summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-04-18 21:21:16 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-04-18 21:21:16 -0300
commitbe7c462910c236c051333485e1d65dc79e81bd97 (patch)
tree080b6e93e170627c5717fb5655f0c16e175ef5e3
parent93734b675246f31cc56c260a0e1196de7992b1af (diff)
downloadaskbot-be7c462910c236c051333485e1d65dc79e81bd97.tar.gz
askbot-be7c462910c236c051333485e1d65dc79e81bd97.tar.bz2
askbot-be7c462910c236c051333485e1d65dc79e81bd97.zip
rebuilt locale files for the new release
-rw-r--r--askbot/bin/checklocales.py11
-rw-r--r--askbot/bin/rebuildlocales.py16
-rw-r--r--askbot/locale/ca/LC_MESSAGES/django.po3075
-rw-r--r--askbot/locale/ca/LC_MESSAGES/djangojs.po289
-rw-r--r--askbot/locale/de/LC_MESSAGES/django.po3628
-rw-r--r--askbot/locale/de/LC_MESSAGES/djangojs.po254
-rw-r--r--askbot/locale/el/LC_MESSAGES/django.po2506
-rw-r--r--askbot/locale/el/LC_MESSAGES/djangojs.po229
-rw-r--r--askbot/locale/en/LC_MESSAGES/django.po765
-rw-r--r--askbot/locale/en/LC_MESSAGES/djangojs.po255
-rw-r--r--askbot/locale/es/LC_MESSAGES/django.po3936
-rw-r--r--askbot/locale/es/LC_MESSAGES/djangojs.po314
-rw-r--r--askbot/locale/fi/LC_MESSAGES/django.po3934
-rw-r--r--askbot/locale/fi/LC_MESSAGES/djangojs.po315
-rw-r--r--askbot/locale/fr/LC_MESSAGES/django.po3381
-rw-r--r--askbot/locale/fr/LC_MESSAGES/djangojs.po291
-rw-r--r--askbot/locale/hi/LC_MESSAGES/django.po870
-rw-r--r--askbot/locale/hi/LC_MESSAGES/djangojs.po8
-rw-r--r--askbot/locale/hu/LC_MESSAGES/django.po3145
-rw-r--r--askbot/locale/hu/LC_MESSAGES/djangojs.po229
-rw-r--r--askbot/locale/it/LC_MESSAGES/django.po3497
-rw-r--r--askbot/locale/it/LC_MESSAGES/djangojs.po267
-rw-r--r--askbot/locale/ja/LC_MESSAGES/django.po1027
-rw-r--r--askbot/locale/ja/LC_MESSAGES/djangojs.po314
-rw-r--r--askbot/locale/ko/LC_MESSAGES/django.po3186
-rw-r--r--askbot/locale/ko/LC_MESSAGES/djangojs.po232
-rw-r--r--askbot/locale/pt/LC_MESSAGES/django.po2671
-rw-r--r--askbot/locale/pt/LC_MESSAGES/djangojs.po229
-rw-r--r--askbot/locale/pt_BR/LC_MESSAGES/django.po3285
-rw-r--r--askbot/locale/pt_BR/LC_MESSAGES/djangojs.po329
-rw-r--r--askbot/locale/ro/LC_MESSAGES/django.po3212
-rw-r--r--askbot/locale/ro/LC_MESSAGES/djangojs.po239
-rw-r--r--askbot/locale/ru/LC_MESSAGES/django.po1401
-rw-r--r--askbot/locale/ru/LC_MESSAGES/djangojs.po8
-rw-r--r--askbot/locale/sr/LC_MESSAGES/django.po3520
-rw-r--r--askbot/locale/sr/LC_MESSAGES/djangojs.po235
-rw-r--r--askbot/locale/tr/LC_MESSAGES/django.po3379
-rw-r--r--askbot/locale/tr/LC_MESSAGES/djangojs.po303
-rw-r--r--askbot/locale/vi/LC_MESSAGES/django.po3193
-rw-r--r--askbot/locale/vi/LC_MESSAGES/djangojs.po232
-rw-r--r--askbot/locale/zh_CN/LC_MESSAGES/django.po3304
-rw-r--r--askbot/locale/zh_CN/LC_MESSAGES/djangojs.po300
-rw-r--r--askbot/locale/zh_TW/LC_MESSAGES/django.po3130
-rw-r--r--askbot/locale/zh_TW/LC_MESSAGES/djangojs.po261
44 files changed, 37275 insertions, 27930 deletions
diff --git a/askbot/bin/checklocales.py b/askbot/bin/checklocales.py
new file mode 100644
index 00000000..c195d1b4
--- /dev/null
+++ b/askbot/bin/checklocales.py
@@ -0,0 +1,11 @@
+import os
+import subprocess
+
+locales = os.listdir('locale')
+for locale in locales:
+ command = 'msgfmt -c locale/%s/LC_MESSAGES/django.po' % locale
+ subprocess.call(command.split())
+ print command
+ command = 'msgfmt -c locale/%s/LC_MESSAGES/djangojs.po' % locale
+ print command
+ subprocess.call(command.split())
diff --git a/askbot/bin/rebuildlocales.py b/askbot/bin/rebuildlocales.py
new file mode 100644
index 00000000..86840add
--- /dev/null
+++ b/askbot/bin/rebuildlocales.py
@@ -0,0 +1,16 @@
+import os
+import subprocess
+
+locales = os.listdir('locale')
+
+def call_command(command):
+ print command
+ subprocess.call(command.split())
+
+for locale in locales:
+ call_command(
+ 'python ../manage.py jinja2_makemessages -l %s -e html,py,txt' % locale
+ )
+ call_command(
+ 'python ../manage.py makemessages -l %s -d djangojs' % locale
+ )
diff --git a/askbot/locale/ca/LC_MESSAGES/django.po b/askbot/locale/ca/LC_MESSAGES/django.po
index 34179cfb..f99d7a3d 100644
--- a/askbot/locale/ca/LC_MESSAGES/django.po
+++ b/askbot/locale/ca/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:55-0500\n"
"PO-Revision-Date: 2011-11-28 19:26+0200\n"
"Last-Translator: Jordi Bofill <jordi.bofill@upc.edu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,15 +22,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "Els visitants anònims no tenen accés a aquesta funció"
-#: feed.py:28 feed.py:90 feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr ""
-#: feed.py:28 feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr "Canal de pregunta individual"
-#: feed.py:90 feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "preguntes recents"
@@ -57,24 +57,33 @@ msgstr "títol"
msgid "please enter a descriptive title for your question"
msgstr "Escriviu un títol descriptiu de la pregunta"
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "el títol ha de tenir més d'%d caràcter"
msgstr[1] "el títol ha de tenir més de %d caràcters"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "contingut"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "etiquetes"
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -89,40 +98,40 @@ msgstr[1] ""
"Les etiquetes són paraules clau curtes, sense espais. Es poden usar fins a "
"%(max_tags)d etiquetes."
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "es requereixen etiquetes"
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "usar %(tag_count)d etiqueta o menys"
msgstr[1] "usar %(tag_count)d etiquetes o menys"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "Es requereixen com a mínim una de les etiquetes següents: %(tags)s"
-#: forms.py:227
+#: forms.py:249
#, 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] "les etiquetes han de tenir menys de %(max_chars)d caràcter"
msgstr[1] "les etiquetes han de tenir menys de %(max_chars)d caràcters"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
"wiki comunitari (no es concedeix reputació; altres usuaris poden editar "
"l'entrada)"
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -130,11 +139,11 @@ msgstr ""
"Amb l'opció de wiki comunitari la pregunta i la resposta no generen punts "
"per l'autor i no es mostra el nom de l'autor."
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "resum actualitzat:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -142,59 +151,59 @@ msgstr ""
"breu resum de la revisió (p.e. correcció ortogràfica, gramàtica, millora "
"d'estil, aquest camp és opcional)"
-#: forms.py:362 forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Introduir el nombre de punts a sumar o restar"
-#: forms.py:376 const/__init__.py:247 forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "aprovat"
-#: forms.py:377 const/__init__.py:248 forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "vist"
-#: forms.py:378 const/__init__.py:249 forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "deshabilitat"
-#: forms.py:379 const/__init__.py:250 forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "bloquejat"
-#: forms.py:381 forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr "administrador"
-#: forms.py:382 const/__init__.py:246 forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "moderador"
-#: forms.py:402 forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr "Canviar estat a"
-#: forms.py:429 forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "quin?"
-#: forms.py:450 forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr "No es pot canviar el pròpi estat"
-#: forms.py:456 forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "No es pot canviar l'altre usuari a moderador"
-#: forms.py:463 forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "No es pot canviar l'estat d'un altre moderador"
-#: forms.py:469 forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "No es pot canviar a l'estat d'administrador "
-#: forms.py:475 forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -202,43 +211,48 @@ msgid ""
msgstr ""
"Si es vol canviar l'estat de %(username)s, feu una selecció amb significat"
-#: forms.py:484 forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Línia d'assumpte"
-#: forms.py:491 forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "Text del missatge"
-#: forms.py:506 forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr "El vostre nom (opcional):"
-#: forms.py:507 forms.py:580
+#: forms.py:531
msgid "Email:"
msgstr "Correu electrònic:"
-#: forms.py:509 forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "El vostre missatge:"
-#: forms.py:514 forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "No donar el meu correu electrònic or rebre respostes:"
-#: forms.py:536 forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr "Marcar l'opció \"No donar el meu correu electrònic\"."
-#: forms.py:575 forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr "preguntar anònimament"
-#: forms.py:577 forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr "Marcar si no voleu mostrar el vostre nom al fer aquesta pregunta"
-#: forms.py:737 forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
@@ -246,11 +260,11 @@ msgstr ""
"Heu fet aquesta pregunta anònimament, si voleu mostrar la vostra identitat "
"marqueu aquesta opció."
-#: forms.py:741 forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr "mostrar identitat"
-#: forms.py:799 forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
@@ -258,7 +272,7 @@ msgstr ""
"Només l'autor de la pregunta anònima pot mostrar la seva identitat. "
"Desmarqueu l'opció"
-#: forms.py:812 forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -268,87 +282,105 @@ msgstr ""
"Si us plau, marqueu «mostrar identitat» o tornareu a carregar aquesta pàgina "
"i editeu de nou la pregunta"
-#: forms.py:856 forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Nom real"
-#: forms.py:863 forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "Lloc web"
-#: forms.py:870 forms.py:944
+#: forms.py:902
msgid "City"
msgstr "Ciutat"
-#: forms.py:879 forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr "Mostrar país"
-#: forms.py:884 forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Data de naixament"
-#: forms.py:885 forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "no es mostrarà, s'usa per calcular l'edat, format: AAAA-MM-DD"
-#: forms.py:891 forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "Perfil"
-#: forms.py:900 forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Nom a mostrar"
-#: forms.py:931 forms.py:932 forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "aquesta adreça de correu ja està registrada, useu una altra"
-#: forms.py:939 forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Seleccionar etiqueta filtre per el correu electrònic"
-#: forms.py:986 forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "Preguntat per mi"
-#: forms.py:989 forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "Respost per mi"
-#: forms.py:992 forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Seleccionat individualment"
-#: forms.py:995 forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Forum senser (filtrar per etiqueta)"
-#: forms.py:999 forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Comentaris i entrades us mencionen"
-#: forms.py:1077 forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "Seleccionar una de les opcions anteriors"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "d'acord, provem-ho!"
-#: forms.py:1078 forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "no, no rebre correus electrònics de la comunitat"
-#: forms.py:1082 forms.py:1157
-msgid "please choose one of the options above"
-msgstr "Seleccionar una de les opcions anteriors"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
-#: urls.py:41 urls.py:52
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
+#: urls.py:41
msgid "about/"
msgstr "sobre/"
-#: urls.py:42 urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr ""
-#: urls.py:43 urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "privacitat/"
@@ -356,15 +388,15 @@ msgstr "privacitat/"
msgid "help/"
msgstr ""
-#: urls.py:46 urls.py:51 urls.py:56 urls.py:61
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "respostes/"
-#: urls.py:46 urls.py:87 urls.py:207 urls.py:56 urls.py:82
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "editar/"
-#: urls.py:51 urls.py:117 urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "revisions/"
@@ -373,92 +405,84 @@ msgid "questions"
msgstr "preguntes"
#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
-#: urls.py:112 urls.py:117 urls.py:123 urls.py:294 urls.py:67 urls.py:77
-#: urls.py:118 skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "preguntes/"
-#: urls.py:82 urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "preguntar/"
-#: urls.py:92 urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr "reetiquetar/"
-#: urls.py:97 urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "tancar/"
-#: urls.py:102 urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "reobrir/"
-#: urls.py:107 urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "resposta/"
-#: urls.py:112 urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "vot/"
-#: urls.py:123 urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "etiquetes/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "subscriure-per-etiquetes/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "usuaris/"
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr "subscripcions/"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr "usuaris/actualitzacio_te_avatar_personalitzat/"
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "insignies/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "missatges/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "marcarllegit/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "penjar/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "comentaris/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "pregunta/"
-#: urls.py:307 setup_templates/settings.py:210
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
-#: setup_templates/settings.py:208
msgid "account/"
msgstr "compte/"
@@ -585,25 +609,30 @@ msgid ""
msgstr ""
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Configuració del correu electrònic i alertes per correu electrònic"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Màxim nombre de missatges en un avís per correu electrònic"
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr "Freqüència predeterminada de notificació per a totes les preguntes"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
"Opció per definir la freqüència de les actualitzacions per correu de: totes "
"les preguntes."
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr ""
"Freqüència predeterminada de notificació de preguntes fets per l'usuari"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
@@ -611,12 +640,12 @@ msgstr ""
"Opció per definir la freqüència de les actualitzacions per correu de: "
"Preguntes fetes per l'usuari"
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr ""
"Freqüència predeterminada de notificació de respostes fetes per l'usuari"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
@@ -624,120 +653,139 @@ msgstr ""
"Opció per definir la freqüència de les actualitzacions per correu de: "
"Respostes fetes per l'usuari."
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr ""
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr ""
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr ""
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr "Permetre publicar preguntes per correu electrònic"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "Permetre publicar preguntes per correu electrònic"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -768,15 +816,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -784,11 +832,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -796,70 +844,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr ""
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -898,11 +930,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -958,105 +992,142 @@ msgid "Minimum length of answer body (number of characters)"
msgstr ""
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "es requereixen etiquetes"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr ""
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "Usar etiquetes comodí"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr ""
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
#: conf/leading_sidebar.py:12
msgid "Common left sidebar"
msgstr "Barra lateral esquerra comuna"
@@ -1077,7 +1148,7 @@ msgid ""
msgstr ""
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1151,16 +1222,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:60 conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:90 conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:95 conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1324,6 +1395,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1521,27 +1596,27 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr ""
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1666,21 +1741,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:37 conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:39 conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:51 conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:53 conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1688,40 +1763,40 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:69 conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:71 conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:84 conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:86 conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:101 conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr ""
-#: conf/skin_general_settings.py:112 conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:121 conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:123 conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1733,11 +1808,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:145 conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:147 conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1746,21 +1821,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:162 conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:164 conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:181 conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:183 conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1769,21 +1844,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:198 conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:200 conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:212 conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:214 conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1792,19 +1867,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:230 conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:233 conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:243 conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:245 conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1815,19 +1890,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:263 conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:265 conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:276 conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:280 conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1892,11 +1967,11 @@ msgstr ""
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:14 conf/user_settings.py:12
+#: conf/user_settings.py:14
msgid "User settings"
msgstr "Configuració d'usuari"
-#: conf/user_settings.py:23 conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
@@ -1904,15 +1979,15 @@ msgstr ""
msgid "Allow users change own email addresses"
msgstr "Permetre als usuaris canviar la seva adreça de correu"
-#: conf/user_settings.py:41 conf/user_settings.py:30
+#: conf/user_settings.py:41
msgid "Allow account recovery by email"
msgstr "Permetre recuperar el compte per correu electrònic"
-#: conf/user_settings.py:50 conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:60 conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
@@ -1930,27 +2005,26 @@ msgid "Use automatic avatars from gravatar.com"
msgstr ""
#: conf/user_settings.py:85
-#, python-format
msgid ""
"Check this option if you want to allow the use of gravatar.com for avatars. "
-"Please, note that this feature might take about 10 minutes to become "
-"100% effective. You will have to enable uploaded avatars as well. For more "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
"html#uploaded-avatars\">this page</a>."
msgstr ""
-#: conf/user_settings.py:97 conf/user_settings.py:59
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:99 conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:109 conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -2057,324 +2131,333 @@ msgstr ""
msgid "too localized"
msgstr ""
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "més recent"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "més antic"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "actiu"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "inactiu"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "més populars"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr ""
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr ""
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "més votat"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr ""
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "tot"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "sense resposta"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "favorit"
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr "llista"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr "núvol"
-#: const/__init__.py:73 const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "La pregunta no té respostes"
-#: const/__init__.py:74 const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "La pregunta no té respostes acceptades"
-#: const/__init__.py:119 const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr "ha fet una pregunta"
-#: const/__init__.py:120 const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr "ha respost una pregunta"
-#: const/__init__.py:121 const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "ha comentat una pregunta"
-#: const/__init__.py:122 const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "ha commentat una resposta"
-#: const/__init__.py:123 const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "ha editat una pregunta"
-#: const/__init__.py:124 const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "ha editat una resposta"
-#: const/__init__.py:125 const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "ha rebut una insígnia"
-#: const/__init__.py:126 const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "ha marcat la millor resposta"
-#: const/__init__.py:127 const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "votat positivament"
-#: const/__init__.py:128 const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "votat negativament"
-#: const/__init__.py:129 const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "cancelat el vot"
-#: const/__init__.py:130 const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "pregunta esborrada"
-#: const/__init__.py:131 const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "resposta esborrada"
-#: const/__init__.py:132 const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "marcat com ofensiu"
-#: const/__init__.py:133 const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "etiquetes actualitzades"
-#: const/__init__.py:134 const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "seleccionat com a favorit"
-#: const/__init__.py:135 const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "completat perfil d'usuari"
-#: const/__init__.py:136 const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "enviat missatge d'actualització a l'usuari"
-#: const/__init__.py:139 const/__init__.py:142
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr "enviat recordatori d'una pregunta sense resposta"
-#: const/__init__.py:143 const/__init__.py:146
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr "enviat recordatori sobre acceptar la millor resposta"
-#: const/__init__.py:145 const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "citat en l'entrada"
-#: const/__init__.py:196 const/__init__.py:199
-msgid "question_answered"
-msgstr "pregunta resposta"
-
-#: const/__init__.py:197 const/__init__.py:200
-msgid "question_commented"
-msgstr "pregunta comentada"
-
-#: const/__init__.py:198 const/__init__.py:201
-msgid "answer_commented"
-msgstr "resposta comentada"
+#: const/__init__.py:202
+#, fuzzy
+msgid "answered question"
+msgstr "ha respost una pregunta"
-#: const/__init__.py:199 const/__init__.py:202
-msgid "answer_accepted"
-msgstr "resposta acceptada"
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "ha editat una resposta"
-#: const/__init__.py:203 const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[tancat]"
-#: const/__init__.py:204 const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[esborrat]"
-#: const/__init__.py:205 views/readers.py:553 const/__init__.py:208
-#: views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "versió inicial"
-#: const/__init__.py:206 const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "reetiquetat"
-#: const/__init__.py:214 const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr "no"
-#: const/__init__.py:215 const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "ignorades"
-#: const/__init__.py:216 const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr "seleccionades"
-#: const/__init__.py:220 const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "instantàniament"
-#: const/__init__.py:221 const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "diari"
-#: const/__init__.py:222 const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "setmanal"
-#: const/__init__.py:223 const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "no correu electrònic"
-#: const/__init__.py:230 const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:231 const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr ""
-#: const/__init__.py:232 const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:233 const/__init__.py:236
+#: const/__init__.py:239
msgid "wavatar"
msgstr ""
-#: const/__init__.py:234 const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:281 skins/default/templates/badges.html:37
-#: const/__init__.py:284
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "or"
-#: const/__init__.py:282 skins/default/templates/badges.html:46
-#: const/__init__.py:285
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "plata"
-#: const/__init__.py:283 skins/default/templates/badges.html:53
-#: const/__init__.py:286
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "bronze"
-#: const/__init__.py:295 const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr "Cap"
-#: const/__init__.py:296 const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr ""
-#: const/__init__.py:297 const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr "Avatar penjat"
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr "preguntes més rellevants"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr "clicar per mostra les preguntes més rellevants"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "rellevància"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "clicar per mostrar les preguntes més antigues"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "data"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "clicar per mostrar les preguntes més recents"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "clicar per mostar les preguntes que porten més temps sense actualitzar"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "activitat"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "clicar per mostar les preguntes actualitzades recentment"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr "clicar per mostrar les preguntes amb menys respostes"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "respostes"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr "clicar per mostrar les preguntes amb més respostes"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "clicar per mostrar les preguntes amb menys votades"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "vots"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "clicar per mostrar les preguntes amb més votades"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
@@ -2383,7 +2466,6 @@ msgstr ""
"electrònic (important) i el nom a mostrar, si ho creieu necessari."
#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
-#: deps/django_authopenid/views.py:151
msgid "i-names are not supported"
msgstr ""
@@ -2448,12 +2530,11 @@ msgid "Your user name (<i>required</i>)"
msgstr "Nom d'usuari (<i>requerit</i>)"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Nom d'usuari incorrecta"
+msgid "sorry, there is no such user name"
+msgstr ""
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
-#: setup_templates/settings.py:208
msgid "signin/"
msgstr ""
@@ -2491,7 +2572,7 @@ msgid "%(site)s user name and password"
msgstr "nom usuari i contrasenya %(site)s"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "Crear un compte amb contrasenya"
@@ -2575,14 +2656,13 @@ msgstr "Registrar-se amb nom usuari i contrasenya de %(provider)s"
msgid "Sign in with your %(provider)s account"
msgstr "Registrar-se amb el vostre compte de %(provider)s"
-#: deps/django_authopenid/views.py:149 deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID de %(openid_url)s és invalid"
-#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:412
-#: deps/django_authopenid/views.py:440 deps/django_authopenid/views.py:270
-#: deps/django_authopenid/views.py:421 deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
@@ -2591,64 +2671,63 @@ msgstr ""
"hi ha problemes connectant amb %(provider)s,torneu a provar-ho i useu un "
"altre proveïdor"
-#: deps/django_authopenid/views.py:362 deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr "S'ha desat la nova contrasenya"
-#: deps/django_authopenid/views.py:466 deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr "La combinació usuari/contrasenya no és correcte"
-#: deps/django_authopenid/views.py:568 deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr "Clicar una de les icones per registrar-se"
-#: deps/django_authopenid/views.py:570 deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr "S'han enviat el missatge de correu per recuperar el compte"
-#: deps/django_authopenid/views.py:573 deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr "Afegir un o més mètodes de registre."
-#: deps/django_authopenid/views.py:575 deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr "Afegir, treure o revalidar els seus mètodes d'entrada"
-#: deps/django_authopenid/views.py:577 deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr "S'ha recuperat el seu compte, però ..."
-#: deps/django_authopenid/views.py:579 deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr "La clau de recuperació d'aquest compte ha expirat o és invàlida"
-#: deps/django_authopenid/views.py:652 deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr "El mètode de registre %(provider_name)s no existeix"
-#: deps/django_authopenid/views.py:658 deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr "S'ha produït un error - torneu-ho a provar"
-#: deps/django_authopenid/views.py:749 deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr "La vostra entrada amb %(provider)s funciona bé"
-#: deps/django_authopenid/views.py:1060 deps/django_authopenid/views.py:1066
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr "s'ha de validar el vostre correu electrònic, consulteu %(details_url)s"
-#: deps/django_authopenid/views.py:1087 deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr "Recuperar el vostre compte %(site)s"
-#: deps/django_authopenid/views.py:1159 deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr "Comproveu el vostre correu electrònic i visiteu l'enllaç inclòs."
@@ -2656,28 +2735,28 @@ msgstr "Comproveu el vostre correu electrònic i visiteu l'enllaç inclòs."
msgid "Site"
msgstr "Lloc"
-#: deps/livesettings/values.py:69 deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr "Principal"
-#: deps/livesettings/values.py:128 deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "Configuració base"
-#: deps/livesettings/values.py:235 deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Valor per defecte: \"\""
-#: deps/livesettings/values.py:242 deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Valor per defecte: "
-#: deps/livesettings/values.py:245 deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Valor per defecte: %s"
-#: deps/livesettings/values.py:629 deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr "Tipus de fitxers d'imatges admesos %(types)s"
@@ -2693,7 +2772,7 @@ msgstr "Documentació"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Canviar contrasenya"
@@ -2755,111 +2834,52 @@ msgstr "Desplegar tot"
msgid "Congratulations, you are now an Administrator"
msgstr "Ara ja ets Administrador"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-"<p>Per preguntar per correu electrònic:</p>\n"
-"<ul>\n"
-" <li>Escriviu l'assumpte com: [Etiqueta1; Etiqueta12] Títol de la "
-"pregunta</li>\n"
-" <li>En el cos del missatge escriviu els detalls de la vostre pregunta</"
-"li>\n"
-"</ul>\n"
-"<p>Les etiquetes poden esta formades per més d'una paraula. Les etiquetes "
-"estan separades per una coma o un punt i coma</p>\n"
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-"<p>S'ha produït un error publicant la vostre pregunta; contacteu amb "
-"l'administrador de %(site)s</p> "
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-"<p>Cal estar <a href=\"%(url)s\">registrat</a> per publicar preguntes s "
-"%(site)s a través del correu electrònic</p>"
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-"<p>La seva pregunta no s'ha publicat ja que el vostre compte d'usuari no té "
-"suficients privilegis</p>"
-
-#: management/commands/send_accept_answer_reminders.py:56
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:61
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr "Acceptar la millor resposta d'aquesta pregunta:"
-#: management/commands/send_accept_answer_reminders.py:63
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr "Acceptar la millor resposta per aquestes preguntes:"
-#: management/commands/send_email_alerts.py:413
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] "%(question_count)d pregunta actualitzada de %(topics)s"
msgstr[1] "%(question_count)d preguntes actualitzades de %(topics)s"
-#: management/commands/send_email_alerts.py:423
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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] "%(name)s, aquest és un missatge d'actualització de %(num)d pregunta"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
+msgstr[0] ""
msgstr[1] ""
-"%(name)s, aquest és un missatge d'actualització de %(num)d preguntes"
-#: management/commands/send_email_alerts.py:440
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "pregunta nova"
-#: management/commands/send_email_alerts.py:465
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-"per canviar la freqüencia de recepció de missatges anar a "
-"%(email_settings_link)s o %(admin_email)s administrador"
-#: management/commands/send_unanswered_question_reminders.py:58
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2871,7 +2891,7 @@ msgstr[1] "%(question_count)d preguntes sense contestar de %(topics)s"
msgid "Please log in to use %s"
msgstr "Entrar per usar %s"
-#: models/__init__.py:316 models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
@@ -2879,7 +2899,7 @@ msgstr ""
"No pot acceptar o rebutjar les millors respostes ja que el seu compte està "
"bloquejat"
-#: models/__init__.py:320 models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
@@ -2887,7 +2907,7 @@ msgstr ""
"No pot acceptar o rebutjar les millors respostes ja que el seu compte està "
"deshabilitat"
-#: models/__init__.py:333 models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
@@ -2896,13 +2916,13 @@ msgstr ""
"S'ha de tenir més de %(points)s per acceptar o rebutjar la pròpia resposta a "
"la vostre pròpia pregunta"
-#: models/__init__.py:355 models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr "Podrà acceptar aquesta resposta a partir de %(will_be_able_at)s"
-#: models/__init__.py:363 models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
@@ -2911,55 +2931,43 @@ msgstr ""
"Només els moderadors o l'autor original de la pregunta -%(username)s- poden "
"acceptar i rebutjar la millor resposta"
-#: models/__init__.py:385 models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "no es pot votar una entrada pròpia"
-#: models/__init__.py:388 models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "El seu compte sembla que està bloquejat"
-#: models/__init__.py:393 models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "El seu compte sembla que està deshabilitat"
-#: models/__init__.py:403 models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr "s'han de tenir més de %(points)s per votar positivament"
-#: models/__init__.py:409 models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr "s'han de tenir més de %(points)s per votar negativament"
-#: models/__init__.py:424 models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "Els usuaris bloquejats no poden penjar fitxers"
-#: models/__init__.py:425 models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr "Els usuaris deshabilitats no poden penjar fitxers"
-#: models/__init__.py:427 models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"només els usuaris amb més de %(min_rep)s punts de reputació poden penjar "
-"imatges"
-
-#: models/__init__.py:446 models/__init__.py:513 models/__init__.py:979
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr "els usuaris bloquejats no poden publicar"
-
-#: models/__init__.py:447 models/__init__.py:982 models/__init__.py:454
-#: models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr "els usuaris deshabilitats no poden publicar"
-#: models/__init__.py:474 models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2974,18 +2982,18 @@ msgstr[1] ""
"Els comentaris (excepte el darrer) es poden editar durant %(minutes)s minuts "
"des de que es publiquen"
-#: models/__init__.py:486 models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
"Només els propietaris de l'entrada o els moderadors poden editar comentaris"
-#: models/__init__.py:499 models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
"El seu compte està deshabilitat, només pot comentar les entrades pròpies"
-#: models/__init__.py:503 models/__init__.py:510
+#: models/__init__.py:523
#, python-format
msgid ""
"Sorry, to comment any post a minimum reputation of %(min_rep)s points is "
@@ -2994,7 +3002,7 @@ msgstr ""
"Per comentar una entrada es cal tenir una reputació de %(min_rep)s puntsSí "
"podeu comentar les entrades i les respostes a les vostres preguntes"
-#: models/__init__.py:531 models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
@@ -3002,7 +3010,7 @@ msgstr ""
"Aquesta entrada s'ha esborrat. Només els seus propietaris, l'administrador "
"del lloc i els moderadors la poden veure."
-#: models/__init__.py:548 models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
@@ -3010,22 +3018,22 @@ msgstr ""
"Una entrada esborrada només la poden editar els moderadors, els "
"administradors del lloc o els propietaris de l'entrada."
-#: models/__init__.py:563 models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr "El seu compte està bloquejat, no podeu editar entrades"
-#: models/__init__.py:567 models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr "El seu compte està deshabilitat, només pot editar entrades pròpies"
-#: models/__init__.py:572 models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
"Per editar entrades wiki s'ha de tenir una reputació mínima de %(min_rep)s"
-#: models/__init__.py:579 models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
@@ -3034,7 +3042,7 @@ msgstr ""
"Per editar entrades d'altres persones s'ha de tenir una reputació mínima de "
"%(min_rep)s"
-#: models/__init__.py:642 models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3048,16 +3056,16 @@ msgstr[1] ""
"No es pot eliminar la pregunta ja que hi ha respostes d'altres usuaris amb "
"vots positius"
-#: models/__init__.py:657 models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr "El seu compte està bloquejat, no pot eliminar entrades"
-#: models/__init__.py:661 models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr "El seu compte està deshabilitat, només pot eliminar entrades pròpies"
-#: models/__init__.py:665 models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
@@ -3066,15 +3074,15 @@ msgstr ""
"per eliminar entrades d'altres persones cal una reputació mínima de "
"%(min_rep)s"
-#: models/__init__.py:685 models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr "El seu compte està bloquejat, no pot tancar preguntes"
-#: models/__init__.py:689 models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr "Des de que el seu compte està deshabilitat no pot tancar preguntes"
-#: models/__init__.py:693 models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
@@ -3083,14 +3091,14 @@ msgstr ""
"Per tancar entrades d'altres persones cal tenir una reputació mínima de "
"%(min_rep)s"
-#: models/__init__.py:702 models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
"Per tancar una pregunta pròpia cal tenir una reputació mínima de %(min_rep)s"
-#: models/__init__.py:726 models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
@@ -3099,63 +3107,71 @@ msgstr ""
"Només els moderadors, els administradors del lloc o els propietaris de les "
"entrades amb reputació mínim de %(min_rep)s poden reobrir preguntes."
-#: models/__init__.py:732 models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
"Per reobrir una pregunta pròpia cal tenir una reputació mínima de %(min_rep)s"
-#: models/__init__.py:752 models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "no es pot senyalar un missatge com ofensiu dues vegades"
-
-#: models/__init__.py:757 models/__init__.py:764
-msgid "blocked users cannot flag posts"
-msgstr "els usuaris bloquejats no poden senyalar entrades"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
+msgstr ""
-#: models/__init__.py:759 models/__init__.py:766
-msgid "suspended users cannot flag posts"
-msgstr "els usuaris deshabilitats no poden senyalar entrades"
+#: models/__init__.py:783
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr "El seu compte està bloquejat, no pot eliminar entrades"
-#: models/__init__.py:761 models/__init__.py:768
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr "s'han de tenir més de %(min_rep)s punts per senyalar spam"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
+msgstr ""
+"Per reetiquetar una pregunta ha de tenir una reputació mínima de %(min_rep)s "
-#: models/__init__.py:780 models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "excedit %(max_flags_per_day)s"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:791 models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:796 models/__init__.py:803
-msgid "blocked users cannot remove flags"
-msgstr "els usuaris bloquejats no poden treure senyals"
+#: models/__init__.py:833
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr "El seu compte està bloquejat, no pot eliminar entrades"
-#: models/__init__.py:798 models/__init__.py:805
-msgid "suspended users cannot remove flags"
-msgstr "els usuaris deshabilitats no poden treure senyals"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:802 models/__init__.py:809
-#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
-msgstr[0] "s'han de tenir més d'%(min_rep)d punt per poder treure senyals"
-msgstr[1] "s'han de tenir més de %(min_rep)d punts per poder treure senyals"
+#: models/__init__.py:843
+#, fuzzy, python-format
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgstr[0] ""
+"Per reetiquetar una pregunta ha de tenir una reputació mínima de %(min_rep)s "
+msgstr[1] ""
+"Per reetiquetar una pregunta ha de tenir una reputació mínima de %(min_rep)s "
-#: models/__init__.py:821 models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr "No té permís per treure totes les senyals"
-#: models/__init__.py:822 models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:846 models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
@@ -3163,79 +3179,78 @@ msgstr ""
"Només els propietaris de de la pregunta, els moderadors i els administradors "
"podenreetiquetar una pregunta esborrada"
-#: models/__init__.py:853 models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr "El seu compte està bloquejat, no pot reetiquetar preguntes"
-#: models/__init__.py:857 models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
"El seu compte està deshabilitat, només pot reetiquetar les preguntes pròpies"
-#: models/__init__.py:861 models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
"Per reetiquetar una pregunta ha de tenir una reputació mínima de %(min_rep)s "
-#: models/__init__.py:880 models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr "El seu compte està bloquejat, no pot eliminar un comentari"
-#: models/__init__.py:884 models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
"El seu compte està deshabilitat, només pot eliminar els comentaris pròpies"
-#: models/__init__.py:888 models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
"Per eliminar comentaris ha de tenir una reputació mínima de %(min_rep)s"
-#: models/__init__.py:911 models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "no es pot revocar un vot antic"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1386 utils/functions.py:78 models/__init__.py:1395
-#: utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "a %(date)s"
-#: models/__init__.py:1388 models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr "en dos dies"
-#: models/__init__.py:1390 models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr "demà"
-#: models/__init__.py:1392 models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "en %(hr)d hora"
msgstr[1] "en %(hr)d hores"
-#: models/__init__.py:1394 models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "en %(min)d minut"
msgstr[1] "en %(min)d minuts"
-#: models/__init__.py:1395 models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] "%(days)d dia"
msgstr[1] "%(days)d dies"
-#: models/__init__.py:1397 models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
@@ -3244,81 +3259,80 @@ msgstr ""
"Els usuaris nous han d'esperar %(days)s per respondre la seva pròpia "
"pregunta. Podeu publicar una resposta %(left)s"
-#: models/__init__.py:1564 skins/default/templates/feedback_email.txt:9
-#: models/__init__.py:1572
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "Anònim"
-#: models/__init__.py:1660 models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Administrador del Lloc"
-#: models/__init__.py:1662 models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Moderador del Fòrum"
-#: models/__init__.py:1664 models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Usuari Deshabilitat"
-#: models/__init__.py:1666 models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Usuari Bloquejat"
-#: models/__init__.py:1668 models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Usuari Registrat"
-#: models/__init__.py:1670 models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Usuari Observat"
-#: models/__init__.py:1672 models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Usuari Habilitat"
-#: models/__init__.py:1781 models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "%(username)s té una reputació de %(reputation)s"
-#: models/__init__.py:1791 models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] "una insígnia d'or"
msgstr[1] "%(count)d insígnies d'or"
-#: models/__init__.py:1798 models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] "una insígnia de plata"
msgstr[1] "%(count)d insígnies de plata"
-#: models/__init__.py:1805 models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "una insígnia de bronze"
msgstr[1] "%(count)d insígnies de bronze"
-#: models/__init__.py:1816 models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s i %(item2)s"
-#: models/__init__.py:1820 models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr "%(user)s té %(badges)s"
-#: models/__init__.py:2286 models/__init__.py:2305
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr ""
-#: models/__init__.py:2423 models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -3327,8 +3341,7 @@ msgstr ""
"Ha rebut una insígnia '%(badge_name)s'. Vegeu la <a href=\"%(user_profile)s"
"\">perfil d'usuari</a>."
-#: models/__init__.py:2625 views/commands.py:433 models/__init__.py:2635
-#: views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr "S'ha desat la seva subscripció d'etiquetes"
@@ -3588,30 +3601,30 @@ msgstr "Taxonomista"
msgid "Created a tag used by %(num)s questions"
msgstr "Crea un etiqueta usada per %(num)s preguntes"
-#: models/badges.py:774 models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "Expert"
-#: models/badges.py:777 models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "Molt actiu en una etiqueta"
-#: models/post.py:1056 models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "Aquesta pregunta s'ha esborrat i no es pot accedir"
-#: models/post.py:1072 models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
"La resposat que cerca ja no es vàlida, ja què s'ha tret la pregunta original "
-#: models/post.py:1079 models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "Aquesta pregunta s'ha tret i no es pot accedir"
-#: models/post.py:1095 models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
@@ -3619,7 +3632,7 @@ msgstr ""
"El comentari que cerca ja no es pot accedir ja què s'ha tret la pregunta "
"original"
-#: models/post.py:1102 models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
@@ -3627,21 +3640,26 @@ msgstr ""
"El comentari que cerca ja no es pot accedir ja què s'ha tret la resposta "
"original"
-#: models/question.py:51 models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" i \"%s\""
-#: models/question.py:54 models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr "\" i més"
-#: models/repute.py:141 models/repute.py:142
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Validar correu electrònic"
+
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Canviar pel moderador. Raó:</em> %(reason)s"
-#: models/repute.py:152 models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
@@ -3650,7 +3668,7 @@ msgstr ""
"S'han afegit %(points)s punts a %(username)s per la seva contribució a la "
"pregunta %(question_title)s"
-#: models/repute.py:157 models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
@@ -3659,68 +3677,70 @@ msgstr ""
"S'han tret %(points)s punts a %(username)s per la seva contribució a la "
"pregunta %(question_title)s"
-#: models/tag.py:106 models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "interessant"
-#: models/tag.py:106 models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "ignorada"
-#: models/user.py:266 models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "Tot el fòrum"
-#: models/user.py:267 models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Preguntes que jo he preguntat"
-#: models/user.py:268 models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Preguntes que jo he respos"
-#: models/user.py:269 models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "Preguntes seleccionades individualment"
-#: models/user.py:270 models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr "Cites i comentaris a respostes"
-#: models/user.py:273 models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Instantàniament"
-#: models/user.py:274 models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Diàriament"
-#: models/user.py:275 models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "Setmanalment"
-#: models/user.py:276 models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "Cap correu electrònic"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Introduïu el vostre <span>nom d'usuari i contrasenya</span> per entrar"
# msgstr "Introduïu el vostre <span>nom d'usuari</span> i inicieu la sessió"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr "(o seleccioneu un dels altres mètodes d'entrada)"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr "Entrar"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Canviar correu electrònic"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3729,27 +3749,38 @@ msgstr "Canviar la vostra adreça de correu electrònic"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
-msgstr "canviar informació %(email)s"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr "el correu electrònic és necessari, consulteu %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
-msgstr "El seu nou correu electrònic"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
-msgstr "El seu correu electrònic"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "Canviar correu electrònic"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3757,122 +3788,112 @@ msgstr "Canviar correu electrònic"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:103
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Cancel·lar"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "Validar correu electrònic"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
-msgstr "validar la informació %(email)s o anar a %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "No s'ha canviat el correu electrònic"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
-msgstr "es manté l'antic %(email)s, si vol pot anar a %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "Correu electrònic canviat"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
-msgstr "per això es pot usar el %(email)s actual"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "Correu electrònic verificat"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
-msgstr "gràcies per verificar el correu electrònic"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "no s'ha enviat la clau de verificació de correu electrònic"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Validar correu electrònic"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
-"no s'ha enviat la clau de correu electrònic %(email)s, canviar el correu a "
-"%(change_link)s"
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
msgid "Registration"
msgstr "Registre"
-#: skins/common/templates/authopenid/complete.html:27
-#, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr "registrar-se a través de %(provider)s; consulteu %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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 ""
-"%(username)s ja existeix, seleccioneu un altre nom per \n"
-" %(provider)s. També és necessari el correu "
-"electrònic: consulteu%(gravatar_faq_url)s\n"
-" "
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "Registre"
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
msgstr ""
-"informació del nou compte de registre extern %(provider)s; consulteu "
-"%(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr "registrar nova connexió Facebook; consulteu %(gravatar_faq_url)s"
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr "Aquest compte ja existeix, useu un altre."
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "Nom d'usuari"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr "Adreça de correu electrònic"
-
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
-msgstr "rebre actualitzacions"
-
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "seleccioneu una de les opcions anteriors"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr "Al entrar, el requadre dret serà l'eina de filtre d'etiquetes"
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "crear compte"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "Registrar-se"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -3896,9 +3917,10 @@ msgstr "Registrar-se aquí:"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
"Salutacions,\n"
"Administrador del fòrum"
@@ -3918,9 +3940,10 @@ msgstr ""
"electrònic"
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
"Si creu que aquest missatge s'ha enviat incorrectament, no ha de fer res. "
@@ -3970,10 +3993,11 @@ msgstr ""
" "
#: skins/common/templates/authopenid/signin.html:28
+#, fuzzy
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
"Seleccioneu un dels serveis per entrar usant OpenID segur o tecnologies "
"similars. La contrasenya del servei extern es manté sempre confidencial, no "
@@ -4020,123 +4044,91 @@ msgstr ""
"Comproveu el vostre correu electrònic i seguiu l'enllaç adjunt per re-"
"connectar al vostre compte"
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+#, fuzzy
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Introduïu el vostre <span>nom d'usuari i contrasenya</span> per entrar"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Registrar-se aquí:"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr "No s'ha pogut entrar, torneu a provar"
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr "Usuari o correu electrònic"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Contrasenya"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Entrar"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr "Per canviar la vostre contrasenya, introduïu la nova dues vegades"
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr "Contrasenya nova"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr "torni a escriure"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr "Aquests són els seus mètodes d'entrada actuals"
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr "proveïdor"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr "recentment usat"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr "esborra, si voleu"
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:34
-#: skins/common/templates/question/question_controls.html:38
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "esborra"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr "no es pot eliminar"
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr "Problemes al registrar-se?"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr "Entreu la vostra adreça de correu electrònic per tenir una nova clau"
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
"Per recuperar el vostre compte entrar la vostra adreça de correu electrònic"
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr "recuperar el vostre compte via correu electrònic"
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr "Enviar una nova clau de recuperació"
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr "Recuperar el vostre compte via correu electrònic"
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr "Perquè usar OpenID?"
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr "amb openid és més fàcil"
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr "reusar openid"
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr "openid està àmpliament adoptat"
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr "openid és un estàndard obert compatible"
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "Cercar més"
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr "Obtenir OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "Registrar-se"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
msgstr "Registrar-se clicant una de les icones "
@@ -4150,10 +4142,19 @@ msgid "Create login name and password"
msgstr "nom d'usuari i contrasenya %(site)s"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
-msgstr "Informació de registre tradicional"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
@@ -4161,15 +4162,11 @@ msgstr ""
"Per evitar la creació automatitzada de comptes, llegiu i introduïu les dues "
"paraules següents"
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Crear un compte"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "o"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "tornar a l'entrada OpenID"
@@ -4228,77 +4225,68 @@ msgstr ""
msgid "Delete These"
msgstr "Esborrar Aquests"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "enllaç permanent a la resposta"
+#: skins/common/templates/question/answer_controls.html:2
+msgid "swap with question"
+msgstr "intercanviar amb la pregunta"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "enllaç permanent"
-#: skins/common/templates/question/answer_controls.html:11
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:313
-#: skins/default/templates/revisions.html:38
-#: skins/default/templates/revisions.html:41
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "editar"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "enllaç"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:22
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "recuperar"
+
+#: skins/common/templates/question/answer_controls.html:19
+#, fuzzy
+msgid "remove offensive flag"
+msgstr "treure senyal"
+
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+msgid "remove flag"
+msgstr "treure senyal"
+
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr "informar com ofensiu (conte spam, publicitat, text maliciós, etc.)"
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "marcat com ofensiu"
-#: skins/common/templates/question/answer_controls.html:24
-#: skins/common/templates/question/question_controls.html:31
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-msgid "remove flag"
-msgstr "treure senyal"
-
-#: skins/common/templates/question/answer_controls.html:34
-#: skins/common/templates/question/question_controls.html:38
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "recuperar"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "editar"
-#: skins/common/templates/question/answer_controls.html:40
-#: skins/common/templates/question/answer_controls.html:50
-msgid "swap with question"
-msgstr "intercanviar amb la pregunta"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "aquesta resposta s'ha seleccionat com a correcta"
-#: skins/common/templates/question/answer_vote_buttons.html:9
-#: skins/common/templates/question/answer_vote_buttons.html:10
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
msgid "mark this answer as correct (click again to undo)"
msgstr "marcar aquesta resposta com a correcte (fer clic de nou per desfer)"
-#: skins/common/templates/question/answer_vote_buttons.html:12
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "%(question_author)s ha seleccionat aquesta resposta com a correcta"
-
#: skins/common/templates/question/closed_question_info.html:2
#, python-format
msgid ""
@@ -4314,45 +4302,52 @@ msgid "close date %(closed_at)s"
msgstr "data tancament %(closed_at)s"
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr "reetiquetar"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "reobrir"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "tancar"
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr "reetiquetar"
+
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
msgstr "és necessari un d'aquestes"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "etiquetes"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(requerit)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Commutar el previsualitzador de l'editor Markdown"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:84
-#: skins/default/templates/question/javascript.html:87
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "ocultar previsualització"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Etiquetes relacionades"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
@@ -4361,18 +4356,14 @@ msgstr "Etiquetes seleccionades"
# posem un signe + per què 'afegir' es talla i queda 'afegi'
#: skins/common/templates/widgets/tag_selector.html:19
#: skins/common/templates/widgets/tag_selector.html:36
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
msgid "add"
msgstr "+"
#: skins/common/templates/widgets/tag_selector.html:21
-#: skins/common/templates/widgets/tag_selector.html:20
msgid "Ignored tags"
msgstr "Etiquetes ignorades"
#: skins/common/templates/widgets/tag_selector.html:38
-#: skins/common/templates/widgets/tag_selector.html:36
msgid "Display tag filter"
msgstr "Aplicar el filtre d'etiquetes"
@@ -4424,7 +4415,6 @@ msgstr "tornar a la pàgina anterior"
#: skins/default/templates/404.jinja.html:31
#: skins/default/templates/widgets/scope_nav.html:6
-#: skins/default/templates/widgets/scope_nav.html:3
msgid "see all questions"
msgstr "veure totes les preguntes"
@@ -4482,20 +4472,20 @@ msgstr "Guardar edició"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:87
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "mostrar previsualització"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "Feu una pregunta"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "Fes la teva pregunta"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
#: skins/default/templates/user_profile/user_recent.html:19
#: skins/default/templates/user_profile/user_stats.html:108
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
#, python-format
msgid "%(name)s"
msgstr ""
@@ -4512,8 +4502,6 @@ msgstr "Insígnia \"%(name)s\""
#: skins/default/templates/badge.html:9
#: skins/default/templates/user_profile/user_recent.html:17
#: skins/default/templates/user_profile/user_stats.html:106
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(description)s"
msgstr ""
@@ -4524,11 +4512,7 @@ msgid_plural "users received this badge:"
msgstr[0] "usuari ha rebut aquesta insígnia:"
msgstr[1] "usuaris han rebut aquesta insígnia:"
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Resum insígnies"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "Insígnies"
@@ -4537,47 +4521,52 @@ msgid "Community gives you awards for your questions, answers and votes."
msgstr "La comunitat atorga premis a les seves preguntes, respostes i vots"
#: skins/default/templates/badges.html:8
-#, python-format
+#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"A continuació hi ha la llista de insígnies disponibles i el nombre de "
"vegades que cada insígnia s'ha atorgat. Doneu la vostra opinió a "
"%(feedback_faq_url)s.\n"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Insígnies de la comunitat"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr "insígnia d'or: l'honor més alt i és molt rara"
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr "descripció de la insígnia d'or"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
"insígnia de plata: atorgada ocasionalment per contribucions de molta alta "
"qualitat"
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
-msgstr "descripció de la insígnia de plata"
+#: skins/default/templates/badges.html:51
+#, fuzzy
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
+msgstr ""
+"insígnia de plata: atorgada ocasionalment per contribucions de molta alta "
+"qualitat"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "insígnia de bronze: atorgada sovint com un honor especial"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "descripció de la insígnia de bronze"
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Tancar pregunta"
@@ -4598,7 +4587,6 @@ msgstr "D'acord amb tancar"
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
-#: skins/default/templates/faq.html:3
msgid "FAQ"
msgstr ""
@@ -4619,15 +4607,17 @@ msgstr ""
"aquesta comunitat"
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Previ a fer una pregunta, useu la cerca per veure si la vostra pregunta ja "
"s'ha contestat abans."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "Quines qüestions he d'evitar preguntar?"
#: skins/default/templates/faq_static.html:11
@@ -4644,13 +4634,11 @@ msgstr "Que he d'evitar en les meves respostes?"
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
-"aquest és un lloc de Preguntes i Respostes, no un grup de discussió. Per "
-"tant eviteu tenir discussions en la vostre resposta. L'opció de fer "
-"comentaris permet, fins cert punt, breus discussions."
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4665,20 +4653,26 @@ msgid "This website is moderated by the users."
msgstr "Aquesta lloc web és moderat pels usuaris."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"El sistema de reputació permet als usuaris guanyar autorització per a fer "
"diverses tasques de moderació."
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "Com funciona el sistema de reputació?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr "Resum del sistema de reputació"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -4707,56 +4701,67 @@ msgstr ""
msgid "upvote"
msgstr "votar positivament"
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr "usar etiquetes"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "afegir comentaris"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "votar negativament"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
msgid " accept own answer to own questions"
msgstr "acceptar la pròpia resposta a les preguntes pròpies"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "obrir i tancar preguntes pròpies"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr "reetiquetar preguntes d'altres"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "editar preguntes wiki de la comunitat"
-#: skins/default/templates/faq_static.html:67
-msgid "\"edit any answer"
+#: skins/default/templates/faq_static.html:61
+#, fuzzy
+msgid "edit any answer"
msgstr "editar qualsevol resposta"
-#: skins/default/templates/faq_static.html:71
-msgid "\"delete any comment"
+#: skins/default/templates/faq_static.html:65
+#, fuzzy
+msgid "delete any comment"
msgstr "eliminar qualsevol comentari"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "què és gravatar"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Per registar-me, he de crear una contrasenya nova?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
@@ -4764,21 +4769,21 @@ msgstr ""
"No, no cal. Podeu entrar a través de qualsevol servei que suporti OpenID, "
"per exemple, Google, Yahoo, AOL, etc."
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr "\"Registrar-se\""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "Per què altres persones poden editar les meves preguntes/respostes?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr ""
"L'objectiu d'aquest lloc es que la comunitat d'usuaris conegui les millors "
"respostes a les seves preguntes."
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "
@@ -4788,19 +4793,19 @@ msgstr ""
"usuaris experimentats del lloc, en funció de la seva reputació; això millora "
"la qualitat general del contingut de base de coneixement."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr "Si aquest enfocament no el convens, respectem la seva decisió."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "Encara té dubtes?"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Si us plau, faci la seva %(ask_question_url)s, ajudi a que la nostre "
"comunitat sigui millor!"
@@ -5054,72 +5059,59 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr "<p>Salutacions,<br/>Administrador del Fòrum</p>"
-#: skins/default/templates/macros.html:5 skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr "Compartir aquesta pregunta a %(site)s"
#: skins/default/templates/macros.html:16
-#: skins/default/templates/macros.html:440
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr "seguir a %(alias)s"
#: skins/default/templates/macros.html:19
-#: skins/default/templates/macros.html:443
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr "no seguir a %(alias)s"
#: skins/default/templates/macros.html:20
-#: skins/default/templates/macros.html:444
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr "seguint a %(alias)s"
-#: skins/default/templates/macros.html:31
-#: skins/default/templates/macros.html:29
-msgid "i like this question (click again to cancel)"
-msgstr "m'agrada aquesta pregunta (feu clic de nou per cancel·lar)"
-
#: skins/default/templates/macros.html:33
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "m'agrada aquesta resposta (feu clic de nou per cancel·lar)"
-
-#: skins/default/templates/macros.html:39
-#: skins/default/templates/macros.html:37
msgid "current number of votes"
msgstr "nombre actual de vots"
-#: skins/default/templates/macros.html:45
-#: skins/default/templates/macros.html:43
-msgid "i dont like this question (click again to cancel)"
-msgstr "no m'agrada aquesta pregunta (feu clic de nou per cancel·lar)"
-
-#: skins/default/templates/macros.html:47
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr "no m'agrada aquesta resposta (feu clic de nou per cancel·lar)"
-
-#: skins/default/templates/macros.html:54
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
msgid "anonymous user"
msgstr "usuari anònim"
-#: skins/default/templates/macros.html:87
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr "aquesta entrada està marcaa com a wiki comunitari"
-#: skins/default/templates/macros.html:90
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
@@ -5128,146 +5120,96 @@ msgstr ""
"Aquesta entrada és un wiki.\n"
" Qualsevol amb una reputació de més de %(wiki_min_rep)s pot contribuir"
-#: skins/default/templates/macros.html:96
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "preguntat"
-#: skins/default/templates/macros.html:98
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "respost"
-#: skins/default/templates/macros.html:100
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "publicat"
-#: skins/default/templates/macros.html:130
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "actualitzat"
-#: skins/default/templates/macros.html:206
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "veure preguntes etiquetades '%(tag)s'"
-#: skins/default/templates/macros.html:258
-#: skins/default/templates/macros.html:266
-#: skins/default/templates/question/javascript.html:19
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "afegir un comentari"
-
-#: skins/default/templates/macros.html:259
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "veure més <strong>%(counter)s</strong>"
-msgstr[1] "veure més <strong>%(counter)s</strong>"
-
-#: skins/default/templates/macros.html:261
-#: skins/default/templates/macros.html:310
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "veure <strong>%(counter)s</strong> comentar més"
-msgstr[1] "veure <strong>%(counter)s</strong> comentaris més"
-
-#: skins/default/templates/macros.html:305
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "eliminar aquest comentari"
-#: skins/default/templates/macros.html:511 templatetags/extra_tags.py:43
-#: skins/default/templates/macros.html:542
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "imatge gravatar de %(username)s"
-#: skins/default/templates/macros.html:520
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr "el lloc web de %(username)s és %(url)s"
-#: skins/default/templates/macros.html:535
-#: skins/default/templates/macros.html:536
-#: skins/default/templates/macros.html:574
-#: skins/default/templates/macros.html:575
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "anterior"
-#: skins/default/templates/macros.html:547
-#: skins/default/templates/macros.html:586
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "pàgina actual"
-#: skins/default/templates/macros.html:549
-#: skins/default/templates/macros.html:556
-#: skins/default/templates/macros.html:588
-#: skins/default/templates/macros.html:595
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "número de pàgina %(num)s"
-#: skins/default/templates/macros.html:560
-#: skins/default/templates/macros.html:599
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "pàgina següent"
-#: skins/default/templates/macros.html:611
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr "respostes per a %(username)s"
-#: skins/default/templates/macros.html:614
-#: skins/default/templates/macros.html:632
-#, python-format
-msgid "you have a new response"
+#: skins/default/templates/macros.html:610
+#, fuzzy, python-format
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "teniu una nova resposta"
msgstr[1] "teniu %(response_count)s noves respostes"
-#: skins/default/templates/macros.html:617
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "no hi ha respostes"
-#: skins/default/templates/macros.html:632
-#: skins/default/templates/macros.html:633
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "%(new)s entrades senyalades noves i %(seen)s anteriors"
-#: skins/default/templates/macros.html:635
-#: skins/default/templates/macros.html:636
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr "%(new)s noves entrades senyalades"
-#: skins/default/templates/macros.html:641
-#: skins/default/templates/macros.html:642
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr "%(seen)s entrades senyalades"
@@ -5276,6 +5218,38 @@ msgstr "%(seen)s entrades senyalades"
msgid "Questions"
msgstr "Preguntes"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "veure més <strong>%(counter)s</strong>"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "veure més <strong>%(counter)s</strong>"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "afegir un comentari"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Respon la teva pròpia pregunta"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "La seva resposta"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Entrar/Registrar-se per Respondre"
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
msgid "Edit question"
@@ -5283,8 +5257,9 @@ msgstr "Editar pregunta"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Canviar etiquetes"
+#, fuzzy
+msgid "Retag question"
+msgstr "Preguntes relacionades"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -5341,6 +5316,13 @@ msgstr "Reobrir aquesta pregunta?"
msgid "Reopen this question"
msgstr "Reobrir aquesta pregunta"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5368,18 +5350,17 @@ msgstr "Subscriure les etiquetes següents:"
msgid "Subscribe"
msgstr "Subscriure"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Llista d'etiquetes"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr "Etiquetes que coincideixen \"%(stag)s\""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Llista d'etiquetes"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
#: skins/default/templates/main_page/tab_bar.html:15
-#: skins/default/templates/main_page/tab_bar.html:14
msgid "Sort by &raquo;"
msgstr "Ordenar per &raquo;"
@@ -5400,7 +5381,6 @@ msgid "by popularity"
msgstr "per popularitat"
#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
-#: skins/default/templates/tags.html:57
msgid "Nothing found"
msgstr "No s'ha trobat"
@@ -5414,7 +5394,9 @@ msgstr "veure les persones amb la reputació més alta"
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
msgstr "reputació"
#: skins/default/templates/users.html:20
@@ -5446,8 +5428,7 @@ msgstr "usuaris que coincideixen amb %(suser)s:"
msgid "Nothing found."
msgstr "No s'ha trobat."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:136
-#: views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5464,12 +5445,10 @@ msgid "Tagged"
msgstr "Reetiquetat"
#: skins/default/templates/main_page/headline.html:24
-#: skins/default/templates/main_page/headline.html:23
msgid "Search tips:"
msgstr "Cerca:"
#: skins/default/templates/main_page/headline.html:27
-#: skins/default/templates/main_page/headline.html:26
msgid "reset author"
msgstr "reinicialitzar autor"
@@ -5477,35 +5456,27 @@ msgstr "reinicialitzar autor"
#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
msgid " or "
msgstr "o"
#: skins/default/templates/main_page/headline.html:30
-#: skins/default/templates/main_page/headline.html:29
msgid "reset tags"
msgstr "reinicialitzar etiquetes"
#: skins/default/templates/main_page/headline.html:33
#: skins/default/templates/main_page/headline.html:36
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
msgid "start over"
msgstr "començar de nou"
#: skins/default/templates/main_page/headline.html:38
-#: skins/default/templates/main_page/headline.html:37
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr " - o podeu afegir més etiquetes i/o revisar la consulta."
#: skins/default/templates/main_page/headline.html:41
-#: skins/default/templates/main_page/headline.html:40
msgid "Search tip:"
msgstr "Cerca:"
#: skins/default/templates/main_page/headline.html:41
-#: skins/default/templates/main_page/headline.html:40
msgid "add tags and a query to focus your search"
msgstr "per acotar les preguntes afegiu etiquetes i/o feu una consulta"
@@ -5543,22 +5514,18 @@ msgid "Please always feel free to ask your question!"
msgstr "Feu la vostra pregunta!"
#: skins/default/templates/main_page/questions_loop.html:11
-#: skins/default/templates/main_page/questions_loop.html:12
msgid "Did not find what you were looking for?"
msgstr "No has trobat el que buscaves?"
#: skins/default/templates/main_page/questions_loop.html:12
-#: skins/default/templates/main_page/questions_loop.html:13
msgid "Please, post your question!"
msgstr "Fes la teva pregunta"
#: skins/default/templates/main_page/tab_bar.html:10
-#: skins/default/templates/main_page/tab_bar.html:9
msgid "subscribe to the questions feed"
msgstr "subscriure al feed preguntes"
#: skins/default/templates/main_page/tab_bar.html:11
-#: skins/default/templates/main_page/tab_bar.html:10
msgid "RSS"
msgstr ""
@@ -5573,21 +5540,21 @@ msgstr ""
"funcionar, habiliti el javascript del seu navegador (<a href="
"\"%(noscript_url)s\">com?</a>)"
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] "les etiquetes han de tenir menys de %(max_chars)s caràcter"
msgstr[1] "les etiquetes han de tenir menys de %(max_chars)s caràcters"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "usar %(tag_count)s etiqueta"
msgstr[1] "usar %(tag_count)s etiquetes o menys"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5622,72 +5589,54 @@ msgstr "Ordenar per »"
msgid "oldest answers will be shown first"
msgstr "es mostraran primer les respostes antigues"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "respostes més antigues"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "es mostraran primer les respostes recents"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "respostes recents"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "es mostraran primer les respostes més votades"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "respostes populars"
-
-#: skins/default/templates/question/content.html:40
-#: skins/default/templates/question/new_answer_form.html:48
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "Respon la teva pròpia pregunta"
-
#: skins/default/templates/question/new_answer_form.html:16
-#: skins/default/templates/question/new_answer_form.html:14
msgid "Login/Signup to Answer"
msgstr "Entrar/Registrar-se per Respondre"
#: skins/default/templates/question/new_answer_form.html:24
-#: skins/default/templates/question/new_answer_form.html:22
msgid "Your answer"
msgstr "La seva resposta"
#: skins/default/templates/question/new_answer_form.html:26
-#: skins/default/templates/question/new_answer_form.html:24
msgid "Be the first one to answer this question!"
msgstr "Sigues el primer en respondre aquesta pregunta!"
#: skins/default/templates/question/new_answer_form.html:32
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr "podeu respondre anònimament i després registrar-vos"
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
-msgstr "respon la seva pròpia pregunta només per donar una resposta"
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:38
-#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
-msgstr "si us plau només proporcionar una resposta, no discutir"
-
-#: skins/default/templates/question/new_answer_form.html:45
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
-msgstr "Entrar/Registrar-se per publicar la seva resposta"
-
-#: skins/default/templates/question/new_answer_form.html:50
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Respon la pregunta"
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5706,42 +5655,42 @@ msgstr "o"
msgid "email"
msgstr "correu electrònic"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr "Eines per a preguntes"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr "clic per deixar de seguir aquesta pregunta"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr "Seguing"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr "Deixar de seguir"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr "clic per seguir aquesta pregunta"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr "Seguir"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] "%(count)s seguidor"
msgstr[1] "%(count)s seguidors"
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr "actualitzacions de correu electrònic"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
@@ -5749,11 +5698,11 @@ msgstr ""
"<strong>Aquí</strong> (un cop connectat) es pot inscriure per rebre "
"actualitzacions periòdiques sobre aquesta pregunta"
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr "subscripció al canal rss d'aquesta pregunta"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr "subscriure's al feed rss"
@@ -5762,49 +5711,44 @@ msgid "Stats"
msgstr "Estadístiques"
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "pregunta feta"
+#, fuzzy
+msgid "Asked"
+msgstr "preguntat"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "s'ha vist la pregunta"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "cops"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "darrera actualització"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Preguntes relacionades"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr "Aviseu-me un cop al dia quan hi ha noves respostes"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+#, fuzzy
+msgid "Email me when there are any new answers"
msgstr "Aviseu-me setmanalment quan hi ha noves respostes"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
-msgstr "Aviseu-me de seguida quan hi ha noves respostes"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
+msgid "once you sign in you will be able to subscribe for any updates here"
+msgstr "quan iniciï la sessió podrà subscriure's a les actualitzacions aquí"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+#, fuzzy
msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
msgstr ""
-"Pot ajustar la freqüència de les actualitzacions de correu electrònic des de "
-"la seva %(profile_url)s"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
-msgid "once you sign in you will be able to subscribe for any updates here"
-msgstr "quan iniciï la sessió podrà subscriure's a les actualitzacions aquí"
+"<strong>Aquí</strong> (un cop connectat) es pot inscriure per rebre "
+"actualitzacions periòdiques sobre aquesta pregunta"
#: skins/default/templates/user_profile/user.html:12
#, python-format
@@ -5837,13 +5781,12 @@ msgstr "Usuari registrat"
msgid "Screen Name"
msgstr "Nom a mostrar"
-#: skins/default/templates/user_profile/user_edit.html:60
+#: skins/default/templates/user_profile/user_edit.html:59
msgid "(cannot be changed)"
msgstr "(no es pot canviar)"
-#: skins/default/templates/user_profile/user_edit.html:102
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
-#: skins/default/templates/user_profile/user_edit.html:95
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Actualitzar"
@@ -5856,13 +5799,19 @@ msgstr "subscripcions"
msgid "Email subscription settings"
msgstr "Configuració de la subscripció de correu electrònic"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr "Informació de la subscripció de correu electrònic"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "No enviar més correus electrònics"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr "El seu correu electrònic"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5889,18 +5838,22 @@ msgid "flagged items (%(flag_count)s)"
msgstr "items senyalats (%(flag_count)s)"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr "seleccionar:"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
msgid "seen"
msgstr "vist"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr "nou"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
msgid "none"
msgstr "cap"
@@ -5916,6 +5869,16 @@ msgstr "marcar com a nou"
msgid "dismiss"
msgstr "rebutjar"
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "treure senyal"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "esborra"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "actualitzar perfil"
@@ -5929,7 +5892,8 @@ msgid "real name"
msgstr "nom real"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "membre per"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5937,8 +5901,9 @@ msgid "last seen"
msgstr "últim cop vist"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr "lloc web de l'usuari"
+#, fuzzy
+msgid "website"
+msgstr "Lloc web"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -6081,20 +6046,16 @@ msgid "%(username)s's network is empty"
msgstr "la xarxa de %(username)s's és buida"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr "activitat"
#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
-#: skins/default/templates/user_profile/user_recent.html:21
msgid "source"
msgstr "font"
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr "reputació"
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "Registre de canvis en la vostre reputació."
@@ -6127,10 +6088,6 @@ msgstr[1] "Respostes"
msgid "the answer has been voted for %(answer_score)s times"
msgstr "la resposta s'ha votat %(answer_score)s vegades"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "aquesta resposta s'ha seleccionat com a correcta"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6169,7 +6126,6 @@ msgstr[0] "<span class=\"count\">%(counter)s</span> Etiqueta"
msgstr[1] "<span class=\"count\">%(counter)s</span> Etiquetes"
#: skins/default/templates/user_profile/user_stats.html:97
-#: skins/default/templates/user_profile/user_stats.html:99
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
@@ -6177,7 +6133,6 @@ msgstr[0] "<span class=\"count\">%(counter)s</span> Insígnia"
msgstr[1] "<span class=\"count\">%(counter)s</span> Insígnies"
#: skins/default/templates/user_profile/user_stats.html:120
-#: skins/default/templates/user_profile/user_stats.html:122
msgid "Answer to:"
msgstr "Respon a:"
@@ -6185,8 +6140,7 @@ msgstr "Respon a:"
msgid "User profile"
msgstr "Perfil d'usuari"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:628
-#: views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "comentaris i respostes a altres preguntes"
@@ -6195,50 +6149,39 @@ msgid "followers and followed users"
msgstr "usuaris seguidors i seguits"
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "gràfic de la reputació de l'usuari"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "històric reputació"
-
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr "preguntes que l'usuari segueix"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "activitat recent"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:669
-#: views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "registre de vots de l'usuari"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "vots emesos"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "vots"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:759
-#: views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "configuració de la subscripció de correu electrònic"
#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
-#: views/users.py:211
msgid "moderate this user"
msgstr "moderar aquest usuari"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "vots"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "consells per respondre"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "feu una pregunta rellevant per a la comunitat"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6246,8 +6189,10 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr "procureu donar una resposta, sense entrar en un discussió"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "procureu donar detalls"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "dóna detalls suficients"
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -6261,7 +6206,8 @@ msgstr "vegeu preguntes més freqüents"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Consells llenguatge de marques"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6285,11 +6231,6 @@ msgid "**bold** or __bold__"
msgstr "**negreta** o _negreta_"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "enllaç"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6316,33 +6257,29 @@ msgstr "es poden posar etiquetes HTML bàsiques"
msgid "learn more about Markdown"
msgstr "aprendre més sobre Markdown"
-#: skins/default/templates/widgets/ask_button.html:5
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "fes una pregunta"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr "cal entrar per publicar una pregunta"
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"per publicar ha de tenir un %(email)s vàlid, \n"
-" vegeu %(email_validation_faq_url)s\n"
-" "
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Entrar/registrar-se per publicar la vostre pregunta"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Fes la teva pregunta"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6363,12 +6300,10 @@ msgid "help"
msgstr "ajuda"
#: skins/default/templates/widgets/footer.html:42
-#: skins/default/templates/widgets/footer.html:40
msgid "privacy policy"
msgstr "avís legal"
#: skins/default/templates/widgets/footer.html:51
-#: skins/default/templates/widgets/footer.html:49
msgid "give feedback"
msgstr "dóna la teva opinió"
@@ -6389,17 +6324,10 @@ msgstr "gent"
msgid "badges"
msgstr "insígnies"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "Consells"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "fes una pregunta interessant per a la comunitat"
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "dóna detalls suficients"
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr "feu una pregunta rellevant per a la comunitat"
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
@@ -6420,17 +6348,14 @@ msgstr[0] "vot"
msgstr[1] "vots"
#: skins/default/templates/widgets/scope_nav.html:6
-#: skins/default/templates/widgets/scope_nav.html:3
msgid "ALL"
msgstr "TOTES"
#: skins/default/templates/widgets/scope_nav.html:8
-#: skins/default/templates/widgets/scope_nav.html:5
msgid "see unanswered questions"
msgstr "veure preguntes sense respondre"
#: skins/default/templates/widgets/scope_nav.html:8
-#: skins/default/templates/widgets/scope_nav.html:5
#, fuzzy
msgid "UNANSWERED"
msgstr ""
@@ -6440,17 +6365,14 @@ msgstr ""
"SENSE RESPONDRE"
#: skins/default/templates/widgets/scope_nav.html:11
-#: skins/default/templates/widgets/scope_nav.html:8
msgid "see your followed questions"
msgstr "mostrar les preguntes seguides"
#: skins/default/templates/widgets/scope_nav.html:11
-#: skins/default/templates/widgets/scope_nav.html:8
msgid "FOLLOWED"
msgstr "SEQUIDES"
#: skins/default/templates/widgets/scope_nav.html:14
-#: skins/default/templates/widgets/scope_nav.html:11
msgid "Please ask your question here"
msgstr "Fes la teva pregunta"
@@ -6463,27 +6385,25 @@ msgid "badges:"
msgstr "insígnies:"
#: skins/default/templates/widgets/user_navigation.html:9
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "sortir"
+#, fuzzy
+msgid "sign out"
+msgstr "sortir/"
#: skins/default/templates/widgets/user_navigation.html:12
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "Registrar-se"
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "Registrar-se aquí:"
#: skins/default/templates/widgets/user_navigation.html:15
-#: skins/default/templates/widgets/user_navigation.html:14
msgid "settings"
msgstr "configuració"
-#: templatetags/extra_filters_jinja.py:273 templatetags/extra_filters.py:145
-#: templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "no"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr "cap"
-#: utils/decorators.py:90 views/commands.py:61 views/commands.py:81
-#: views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr "hi ha hagut un error"
@@ -6500,7 +6420,8 @@ msgid "this field is required"
msgstr "aquesta camp és requerit"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "nom d'usuari"
#: utils/forms.py:69
@@ -6532,8 +6453,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "adreça correu electrònic"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6547,17 +6468,13 @@ msgstr ""
msgid "this email is already used by someone else, please choose another"
msgstr "aquesta adreça de correu ja s'està utilitzant, trieu un altre"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "contrasenya"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "la contrasenya és necessaria"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "repetir contrasenya"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6567,28 +6484,74 @@ msgstr "tornar a entrar la contrasenya"
msgid "sorry, entered passwords did not match, please try again"
msgstr "les contrasenyes no coincideixen, torneu a provar"
-#: utils/functions.py:82 utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "fa 2 dies"
-#: utils/functions.py:84 utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "ahir"
-#: utils/functions.py:87 utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] ""
msgstr[1] ""
-#: utils/functions.py:93 utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] "fa %(min)d minut"
msgstr[1] "fa %(min)d minuts"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+"<p>Per preguntar per correu electrònic:</p>\n"
+"<ul>\n"
+" <li>Escriviu l'assumpte com: [Etiqueta1; Etiqueta12] Títol de la "
+"pregunta</li>\n"
+" <li>En el cos del missatge escriviu els detalls de la vostre pregunta</"
+"li>\n"
+"</ul>\n"
+"<p>Les etiquetes poden esta formades per més d'una paraula. Les etiquetes "
+"estan separades per una coma o un punt i coma</p>\n"
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+"<p>S'ha produït un error publicant la vostre pregunta; contacteu amb "
+"l'administrador de %(site)s</p> "
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+"<p>Cal estar <a href=\"%(url)s\">registrat</a> per publicar preguntes s "
+"%(site)s a través del correu electrònic</p>"
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+"<p>La seva pregunta no s'ha publicat ja que el vostre compte d'usuari no té "
+"suficients privilegis</p>"
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6601,174 +6564,188 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:71 views/commands.py:123
+#: views/commands.py:83
msgid "Sorry, but anonymous users cannot access the inbox"
msgstr "Els usuaris anònims no tenen accés a la safata d'entrada"
-#: views/commands.py:99 views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "els usuaris anònims no poden votar"
-#: views/commands.py:115 views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "se li han acabat el vots per avui"
-#: views/commands.py:121 views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Per avui li queden %(votes_left)s restants"
-#: views/commands.py:196 views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "alguna cosa no funciona aqui ..."
-#: views/commands.py:215 views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "Els usuaris anònims no poden acceptar respostes"
-#: views/commands.py:324 views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr ""
"subscripció desada, %(email)s s'han de validar, veure %(details_url)s"
-#: views/commands.py:331 views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "freqüencia d'actualització de correus diària"
-#: views/commands.py:437 views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:446 views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:572 views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr "Registrar-se per votar"
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Registrar-se per votar"
+
#: views/meta.py:37
#, python-format
msgid "About %(site)s"
msgstr "Sobre %(site)s"
-#: views/meta.py:86 views/meta.py:84
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
-#: views/meta.py:87 views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Gràcies pels comentaris"
-#: views/meta.py:96 views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/meta.py:100 skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
+#: views/meta.py:106
msgid "Privacy policy"
msgstr "Avís legal"
-#: views/readers.py:134 views/readers.py:152
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s pregunta, etiquetada"
msgstr[1] "%(q_num)s preguntes, etiquetades"
-#: views/readers.py:366 views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr "el commentari que busca s'ha esborrat i no es pot accedir"
-#: views/users.py:206 views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr "usuari moderador"
-#: views/users.py:373 views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "perfil d'usuari"
-#: views/users.py:374 views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "resum perfil usuari"
-#: views/users.py:543 views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "activitat recent de l'usuari"
-#: views/users.py:544 views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "perfil - activitat recent"
-#: views/users.py:629 views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "perfil - respostes"
-#: views/users.py:670 views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "peril - vots"
-#: views/users.py:691 views/users.py:897
-msgid "user reputation in the community"
-msgstr "reputació de l'usuari a la comunitat"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr "reputació"
-#: views/users.py:692 views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "perfil - reputació de l'usuari"
-#: views/users.py:710 views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "preguntes preferides dels usuaris"
-#: views/users.py:711 views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "perfil - preguntes preferides"
-#: views/users.py:731 views/users.py:735 views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "canvis desats"
-#: views/users.py:741 views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "cancel·lat l'acutalització de correu electrònic"
-#: views/users.py:760 views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "perfil - subscripcions de correu electrònic"
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr "Els usuaris anònims no poden pujar fitxers"
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "els tipus de fitxers permesos són '%(file_types)s'"
-#: views/writers.py:89 views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "grandària màxima dels fitxers a penjar és de %(file_size)s"
-#: views/writers.py:97 views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
"Error penjant el fitxer. Contacteu amb l'administrador del lloc. Gràcies."
-#: views/writers.py:190 views/writers.py:192
-msgid "Please log in to ask questions"
-msgstr "Entrar per fer preguntes"
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:455 views/writers.py:493
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr "Entrar per respondre preguntes"
-#: views/writers.py:561 views/writers.py:600
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -6777,11 +6754,11 @@ msgstr ""
"Sembla que heu sortit i no podeu posar comentaris. <a href=\"%(sign_in_url)s"
"\">Entreu</a>."
-#: views/writers.py:578 views/writers.py:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr "Els usuaris anònims no poden editar comentaris"
-#: views/writers.py:608 views/writers.py:658
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -6790,118 +6767,426 @@ msgstr ""
"Sembla que heu sortit i no podeu eliminar comentaris. <a href="
"\"%(sign_in_url)s\">Entreu</a>."
-#: views/writers.py:628 views/writers.py:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "sembla que tenim algunes dificultats tècniques"
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr "aquest correu electrònic s'enllaçarà al Gravatar"
+#~ msgid "question_answered"
+#~ msgstr "pregunta resposta"
-#: 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 el fòrum i mira les noves preguntes i respostes. Potser algú que "
-"coneixes pot ajudar responen alguna de les preguntes o pot estar interessat "
-"en publicar algunapregunta."
+#~ msgid "question_commented"
+#~ msgstr "pregunta comentada"
-#: management/commands/send_email_alerts.py:465
-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 ""
-"La subscripció més freqüent que té és la 'diària' de preguntes "
-"seleccionades. Si rep més d'un missatge al dia, informi aquest fet a "
-"l'administrador del lloc."
+#~ msgid "answer_commented"
+#~ msgstr "resposta comentada"
-#: management/commands/send_email_alerts.py:471
-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 ""
-"La subscripció més freqüent que té és 'setmanal'. Si rep aquest missatge més "
-"d'un cop per setmana, informi aquest fet a l'administrador del lloc."
+#~ msgid "answer_accepted"
+#~ msgstr "resposta acceptada"
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-"És possible que rebi enllaços ja consultats abans, es tracte d'una qüestió "
-"tècnica que es resoldrà."
+#~ msgid "Incorrect username."
+#~ msgstr "Nom d'usuari incorrecta"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s ha modificat la pregunta"
+#~ 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] ""
+#~ "%(name)s, aquest és un missatge d'actualització de %(num)d pregunta"
+#~ msgstr[1] ""
+#~ "%(name)s, aquest és un missatge d'actualització de %(num)d preguntes"
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr "%(people)s han publicat %(new_answer_count)s noves respostes"
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "per canviar la freqüencia de recepció de missatges anar a "
+#~ "%(email_settings_link)s o %(admin_email)s administrador"
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s han comentat la pregunta"
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr ""
+#~ "només els usuaris amb més de %(min_rep)s punts de reputació poden penjar "
+#~ "imatges"
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s han comentat respostes"
+#~ msgid "blocked users cannot post"
+#~ msgstr "els usuaris bloquejats no poden publicar"
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s han comentat una resposta"
+#~ msgid "suspended users cannot post"
+#~ msgstr "els usuaris deshabilitats no poden publicar"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
-msgid "remove all flags"
-msgstr "treure senyals"
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr "no es pot senyalar un missatge com ofensiu dues vegades"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "entrades per pàgina"
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr "els usuaris bloquejats no poden senyalar entrades"
-#: skins/default/templates/user_profile/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] "<span class=\"count\">%(counter)s</span> Resposta"
-msgstr[1] "<span class=\"count\">%(counter)s</span> Respostes"
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr "els usuaris deshabilitats no poden senyalar entrades"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d %(badge_level)s insígnia"
-msgstr[1] "%(badge_count)d %(badge_level)s insígnies"
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr "s'han de tenir més de %(min_rep)s punts per senyalar spam"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr "excedit %(max_flags_per_day)s"
-#: skins/default/templates/question/answer_tab_bar.html:3
-#, python-format
-msgid ""
-"\n"
-" %(counter)s Answer\n"
-" "
-msgid_plural ""
-"\n"
-" %(counter)s Answers\n"
-" "
-msgstr[0] ""
-msgstr[1] ""
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr "els usuaris bloquejats no poden treure senyals"
+
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr "els usuaris deshabilitats no poden treure senyals"
+
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] "s'han de tenir més d'%(min_rep)d punt per poder treure senyals"
+#~ msgstr[1] "s'han de tenir més de %(min_rep)d punts per poder treure senyals"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "no es pot revocar un vot antic"
+
+#~ msgid "change %(email)s info"
+#~ msgstr "canviar informació %(email)s"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr "el correu electrònic és necessari, consulteu %(gravatar_faq_url)s"
+
+#~ msgid "Your new Email"
+#~ msgstr "El seu nou correu electrònic"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr "validar la informació %(email)s o anar a %(change_email_url)s"
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr "es manté l'antic %(email)s, si vol pot anar a %(change_email_url)s"
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr "per això es pot usar el %(email)s actual"
+
+#~ msgid "thanks for verifying email"
+#~ msgstr "gràcies per verificar el correu electrònic"
+
+#~ msgid "email key not sent"
+#~ msgstr "no s'ha enviat la clau de verificació de correu electrònic"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "no s'ha enviat la clau de correu electrònic %(email)s, canviar el correu "
+#~ "a %(change_link)s"
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "registrar-se a través de %(provider)s; consulteu %(gravatar_faq_url)s"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "%(username)s ja existeix, seleccioneu un altre nom per \n"
+#~ " %(provider)s. També és necessari el correu "
+#~ "electrònic: consulteu%(gravatar_faq_url)s\n"
+#~ " "
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "informació del nou compte de registre extern %(provider)s; consulteu "
+#~ "%(gravatar_faq_url)s"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr "registrar nova connexió Facebook; consulteu %(gravatar_faq_url)s"
+
+#~ msgid "This account already exists, please use another."
+#~ msgstr "Aquest compte ja existeix, useu un altre."
+
+#~ msgid "Screen name label"
+#~ msgstr "Nom d'usuari"
+
+#~ msgid "Email address label"
+#~ msgstr "Adreça de correu electrònic"
+
+#~ msgid "receive updates motivational blurb"
+#~ msgstr "rebre actualitzacions"
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr "Al entrar, el requadre dret serà l'eina de filtre d'etiquetes"
+
+#~ msgid "create account"
+#~ msgstr "crear compte"
+
+#~ msgid "Login"
+#~ msgstr "Entrar"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "Perquè usar OpenID?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "amb openid és més fàcil"
+
+#~ msgid "reuse openid"
+#~ msgstr "reusar openid"
+
+#~ msgid "openid is widely adopted"
+#~ msgstr "openid està àmpliament adoptat"
+
+#~ msgid "openid is supported open standard"
+#~ msgstr "openid és un estàndard obert compatible"
+
+#~ msgid "Find out more"
+#~ msgstr "Cercar més"
+
+#~ msgid "Get OpenID"
+#~ msgstr "Obtenir OpenID"
+
+#~ msgid "Traditional signup info"
+#~ msgstr "Informació de registre tradicional"
+
+#~ msgid "Create Account"
+#~ msgstr "Crear un compte"
+
+#~ msgid "answer permanent link"
+#~ msgstr "enllaç permanent a la resposta"
+
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "%(question_author)s ha seleccionat aquesta resposta com a correcta"
+
+#~ msgid "Related tags"
+#~ msgstr "Etiquetes relacionades"
+
+#~ msgid "Ask a question"
+#~ msgstr "Feu una pregunta"
+
+#~ msgid "Badges summary"
+#~ msgstr "Resum insígnies"
+
+#~ msgid "gold badge description"
+#~ msgstr "descripció de la insígnia d'or"
+
+#~ msgid "silver badge description"
+#~ msgstr "descripció de la insígnia de plata"
+
+#~ msgid "bronze badge description"
+#~ msgstr "descripció de la insígnia de bronze"
+
+#~ 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 ""
+#~ "aquest és un lloc de Preguntes i Respostes, no un grup de discussió. Per "
+#~ "tant eviteu tenir discussions en la vostre resposta. L'opció de fer "
+#~ "comentaris permet, fins cert punt, breus discussions."
+
+#~ msgid "Rep system summary"
+#~ msgstr "Resum del sistema de reputació"
+
+#~ msgid "use tags"
+#~ msgstr "usar etiquetes"
+
+#~ msgid "what is gravatar"
+#~ msgstr "què és gravatar"
+
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "m'agrada aquesta pregunta (feu clic de nou per cancel·lar)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "m'agrada aquesta resposta (feu clic de nou per cancel·lar)"
+
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "no m'agrada aquesta pregunta (feu clic de nou per cancel·lar)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "no m'agrada aquesta resposta (feu clic de nou per cancel·lar)"
+
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] "veure <strong>%(counter)s</strong> comentar més"
+#~ msgstr[1] "veure <strong>%(counter)s</strong> comentaris més"
+
+#~ msgid "Change tags"
+#~ msgstr "Canviar etiquetes"
+
+#~ msgid "reputation"
+#~ msgstr "reputació"
+
+#~ msgid "oldest answers"
+#~ msgstr "respostes més antigues"
+
+#~ msgid "newest answers"
+#~ msgstr "respostes recents"
+
+#~ msgid "popular answers"
+#~ msgstr "respostes populars"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr "podeu respondre anònimament i després registrar-vos"
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr "respon la seva pròpia pregunta només per donar una resposta"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr "si us plau només proporcionar una resposta, no discutir"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Entrar/Registrar-se per publicar la seva resposta"
+
+#~ msgid "Answer the question"
+#~ msgstr "Respon la pregunta"
+
+#~ msgid "question asked"
+#~ msgstr "pregunta feta"
+
+#~ msgid "question was seen"
+#~ msgstr "s'ha vist la pregunta"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr "Aviseu-me un cop al dia quan hi ha noves respostes"
+
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr "Aviseu-me de seguida quan hi ha noves respostes"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr ""
+#~ "Pot ajustar la freqüència de les actualitzacions de correu electrònic des "
+#~ "de la seva %(profile_url)s"
+
+#~ msgid "email subscription settings info"
+#~ msgstr "Informació de la subscripció de correu electrònic"
+
+#~ msgid "Stop sending email"
+#~ msgstr "No enviar més correus electrònics"
+
+#~ msgid "user website"
+#~ msgstr "lloc web de l'usuari"
+
+#~ msgid "reputation history"
+#~ msgstr "històric reputació"
+
+#~ msgid "recent activity"
+#~ msgstr "activitat recent"
+
+#~ msgid "casted votes"
+#~ msgstr "vots emesos"
+
+#~ msgid "answer tips"
+#~ msgstr "consells per respondre"
+
+#~ msgid "please try to provide details"
+#~ msgstr "procureu donar detalls"
+
+#~ msgid "ask a question"
+#~ msgstr "fes una pregunta"
+
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ " see %(email_validation_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "per publicar ha de tenir un %(email)s vàlid, \n"
+#~ " vegeu %(email_validation_faq_url)s\n"
+#~ " "
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Entrar/registrar-se per publicar la vostre pregunta"
+
+#~ msgid "question tips"
+#~ msgstr "Consells"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "fes una pregunta interessant per a la comunitat"
+
+#~ msgid "logout"
+#~ msgstr "sortir"
+
+#~ msgid "login"
+#~ msgstr "Registrar-se"
+
+#~ msgid "no items in counter"
+#~ msgstr "no"
+
+#~ msgid "your email address"
+#~ msgstr "adreça correu electrònic"
+
+#~ msgid "choose password"
+#~ msgstr "contrasenya"
+
+#~ msgid "retype password"
+#~ msgstr "repetir contrasenya"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "reputació de l'usuari a la comunitat"
+
+#~ msgid "Please log in to ask questions"
+#~ msgstr "Entrar per fer preguntes"
+
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "aquest correu electrònic s'enllaçarà al Gravatar"
+
+#~ 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 el fòrum i mira les noves preguntes i respostes. Potser algú que "
+#~ "coneixes pot ajudar responen alguna de les preguntes o pot estar "
+#~ "interessat en publicar algunapregunta."
+
+#~ 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 ""
+#~ "La subscripció més freqüent que té és la 'diària' de preguntes "
+#~ "seleccionades. Si rep més d'un missatge al dia, informi aquest fet a "
+#~ "l'administrador del lloc."
+
+#~ 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 ""
+#~ "La subscripció més freqüent que té és 'setmanal'. Si rep aquest missatge "
+#~ "més d'un cop per setmana, informi aquest fet a l'administrador del lloc."
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr ""
+#~ "És possible que rebi enllaços ja consultats abans, es tracte d'una "
+#~ "qüestió tècnica que es resoldrà."
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s ha modificat la pregunta"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr "%(people)s han publicat %(new_answer_count)s noves respostes"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s han comentat la pregunta"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s han comentat respostes"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s han comentat una resposta"
+
+#~ msgid "remove all flags"
+#~ msgstr "treure senyals"
+
+#~ msgid "posts per page"
+#~ msgstr "entrades per pàgina"
+
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] "<span class=\"count\">%(counter)s</span> Resposta"
+#~ msgstr[1] "<span class=\"count\">%(counter)s</span> Respostes"
+
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d %(badge_level)s insígnia"
+#~ msgstr[1] "%(badge_count)d %(badge_level)s insígnies"
#~ msgid "question content must be > 10 characters"
#~ msgstr "la pregunta ha de tenir més de 10 caràcters"
diff --git a/askbot/locale/ca/LC_MESSAGES/djangojs.po b/askbot/locale/ca/LC_MESSAGES/djangojs.po
index f5ff8dd0..f64685b0 100644
--- a/askbot/locale/ca/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/ca/LC_MESSAGES/djangojs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:56-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Jordi Bofill <jordi.bofill@upc.edu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,7 +17,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr "Vol eliminar l'entrada %s?"
@@ -37,38 +37,38 @@ msgstr ""
msgid "passwords do not match"
msgstr "les contrasenyes no coincideixen"
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr "Mostrar/canviar els mètodes d'entrada actuals"
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr "Entrar el vostre %s per continuar"
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr "Connectar el compte %(provider_name)s a %(site)s"
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr "Canviar la contrasenya %s"
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr "Canviar contrasenya"
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr "Crear una contrasenya per %s"
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr "Crear contrasenya"
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr "Crear un compte protegit amb contrasenya"
@@ -76,146 +76,77 @@ msgstr "Crear un compte protegit amb contrasenya"
msgid "loading..."
msgstr "càrrega..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "Les etiquetes no poden estar buides"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "el contingut no pot estar buit"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "%s contingut mín caràct."
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "entrar títol"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "%s títol mín caràct."
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "permisos insuficients "
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "no es pot escollir resp. pròpia com a millor"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "entrar"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr "usuaris anònims no poden seguir preguntes"
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr "usuaris anònims no poden subscriures a preguntes"
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "usuaris anònims no poden votar"
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr "confirmar com ofensiu"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr "confirmar com ofensiu"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "usuaris anònims no poden senyalar entrades com ofensives"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "confirmar eliminar"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "usuaris anònims no poden eliminar/recuperar"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "entrada recuperada"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "entrada eliminada"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "Seguir"
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] "%s seguidor"
-msgstr[1] "%s seguidors"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>Seguint</div><div class=\"unfollow\">Deixar de seguir</div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "recuperar"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "eliminar"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "afegir comentari"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "desar comentari"
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "introduir %s caràcters més"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "queden %s caràcters"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr "anul·lar"
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "confirmar abandó del commenari"
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "eliminar aquest comentari"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "conformar eliminar comentari"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "Títol de la pregunta (més de 10 caràcters)"
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "Coincidències de la etiqueta:"
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "i %s més què no es mostren ..."
@@ -229,114 +160,174 @@ msgid_plural "Delete these notifications?"
msgstr[0] "Eliminar aquesta notificació?"
msgstr[1] "Eliminar aquestes notificacions"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "eliminar aquest comentari"
+msgstr[1] "eliminar aquest comentari"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "eliminar aquest comentari"
+msgstr[1] "eliminar aquest comentari"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr "<a href=\"%(signin_url)s\">Entrar</a> per seguir a %(username)s"
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "deixar de seguir a %s"
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "seguint a %s"
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "seguir a %s"
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "clicar per tancar"
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "clicar per modificar aquest comentari"
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "modificar"
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr "veure preguntes etiquetades '%s'"
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "negreta"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "cursiva"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "enllaç"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "citar"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "format predefinit "
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "imatge"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr "adjunt"
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "llista numerada"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "llista de pics"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "encapçalament"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "barra horitzontal"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "desfer"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "refer"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr "entrar url de la imatge"
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr "entrar l'url"
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "pujar arxiu adjunt"
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr "descripció de la imatge"
+#~ msgid "tags cannot be empty"
+#~ msgstr "Les etiquetes no poden estar buides"
+
+#~ msgid "content cannot be empty"
+#~ msgstr "el contingut no pot estar buit"
+
+#~ msgid "%s content minchars"
+#~ msgstr "%s contingut mín caràct."
+
+#~ msgid "please enter title"
+#~ msgstr "entrar títol"
+
+#~ msgid "%s title minchars"
+#~ msgstr "%s títol mín caràct."
+
+#~ msgid "Follow"
+#~ msgstr "Seguir"
+
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] "%s seguidor"
+#~ msgstr[1] "%s seguidors"
+
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr "<div>Seguint</div><div class=\"unfollow\">Deixar de seguir</div>"
+
+#~ msgid "undelete"
+#~ msgstr "recuperar"
+
+#~ msgid "delete"
+#~ msgstr "eliminar"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "introduir %s caràcters més"
+
+#~ msgid "%s characters left"
+#~ msgstr "queden %s caràcters"
+
+#~ msgid "cancel"
+#~ msgstr "anul·lar"
+
+#~ msgid "confirm abandon comment"
+#~ msgstr "confirmar abandó del commenari"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "conformar eliminar comentari"
+
+#~ msgid "click to edit this comment"
+#~ msgstr "clicar per modificar aquest comentari"
+
+#~ msgid "edit"
+#~ msgstr "modificar"
+
+#~ msgid "see questions tagged '%s'"
+#~ msgstr "veure preguntes etiquetades '%s'"
+
+#~ msgid "image description"
+#~ msgstr "descripció de la imatge"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr "nom del fitxer"
+#~ msgid "file name"
+#~ msgstr "nom del fitxer"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr "text de l'enllaç"
+#~ msgid "link text"
+#~ msgstr "text de l'enllaç"
diff --git a/askbot/locale/de/LC_MESSAGES/django.po b/askbot/locale/de/LC_MESSAGES/django.po
index cf922536..51a244e8 100644
--- a/askbot/locale/de/LC_MESSAGES/django.po
+++ b/askbot/locale/de/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:57-0500\n"
"PO-Revision-Date: 2010-05-06 02:23\n"
"Last-Translator: <who@email.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23,16 +23,16 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "Gastbenutzer können nicht abstimmen"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr "-"
-#: feed.py:26
+#: feed.py:28
#, fuzzy
msgid "Individual question feed"
msgstr "Individuell ausgewählte Fragen"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "Neueste Fragen"
@@ -61,24 +61,33 @@ msgstr "Titel"
msgid "please enter a descriptive title for your question"
msgstr "Bitte geben Sie einen Aussagekräftigen Titel für Ihre Frage ein."
-#: forms.py:111
+#: forms.py:113
#, fuzzy, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "Der Titel muß länger als 10 Zeichen sein."
msgstr[1] "Der Titel muß länger als 10 Zeichen sein."
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "Inhalt"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "Tags"
-#: forms.py:168
+#: forms.py:188
#, fuzzy, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -93,40 +102,40 @@ msgstr[1] ""
"Tags sind kurze Stichwörter. Sie dürfen keine Leerzeichen enthalten. Bis zu "
"fünf Tags können vergeben werden."
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "Mindestens ein Tag muß gesetzt sein."
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "Bitte %(tag_count)d Tags oder weniger benutzen"
msgstr[1] "Bitte %(tag_count)d Tags oder weniger benutzen"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "Es requereixen com a mínim una de les etiquetes següents: %(tags)s"
-#: forms.py:227
+#: forms.py:249
#, 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] "Tags müssen kürzer als %(max_chars)d Zeichen sein"
msgstr[1] "Tags müssen kürzer als %(max_chars)d Zeichen sein"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "Diese Buchstaben dürfen in Tags vorkommen"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
"wiki comunitari (no es concedeix reputació; altres usuaris poden editar "
"l'entrada)"
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -135,11 +144,11 @@ msgstr ""
"Antworten keine Bewertungspunkte vergeben, und der Name des Autors wird "
"nicht angezeigt."
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "Zusammenfassung der Überarbeitung:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -148,65 +157,65 @@ msgstr ""
"Rechtschreibung, Tippfehler korrigiert, Grammatik, Stil verbessert) "
"Freiwillige Angabe."
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Introduir el nombre de punts a sumar o restar"
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "aprovat"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "vist"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
#, fuzzy
msgid "suspended"
msgstr "aktualisiert"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "bloquejat"
-#: forms.py:383
+#: forms.py:405
#, fuzzy
msgid "administrator"
msgstr "Ihr Forumsteam"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
#, fuzzy
msgid "moderator"
msgstr "benutzer-moderieren/"
-#: forms.py:404
+#: forms.py:426
#, fuzzy
msgid "Change status to"
msgstr "Tags ändern"
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "quin?"
-#: forms.py:452
+#: forms.py:474
#, fuzzy
msgid "Cannot change own status"
msgstr "Über selbst verfaßte Beiträge kann nicht abgestimmt werden"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "No es pot canviar l'altre usuari a moderador"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "No es pot canviar l'estat d'un altre moderador"
-#: forms.py:471
+#: forms.py:493
#, fuzzy
msgid "Cannot change status to admin"
msgstr "Über selbst verfaßte Beiträge kann nicht abgestimmt werden"
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -214,47 +223,52 @@ msgid ""
msgstr ""
"Si es vol canviar l'estat de %(username)s, feu una selecció amb significat"
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Línia d'assumpte"
-#: forms.py:493
+#: forms.py:515
#, fuzzy
msgid "Message text"
msgstr "Nachrichtentext:"
-#: forms.py:579
+#: forms.py:530
#, fuzzy
msgid "Your name (optional):"
msgstr "Ihr Name:"
-#: forms.py:580
+#: forms.py:531
#, fuzzy
msgid "Email:"
msgstr "E-Mail"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "Ihre Nachricht:"
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "No donar el meu correu electrònic or rebre respostes:"
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr "Marcar l'opció \"No donar el meu correu electrònic\"."
-#: forms.py:648
+#: forms.py:599
#, fuzzy
msgid "ask anonymously"
msgstr "Anonym"
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr "Marcar si no voleu mostrar el vostre nom al fer aquesta pregunta"
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
@@ -262,11 +276,11 @@ msgstr ""
"Heu fet aquesta pregunta anònimament, si voleu mostrar la vostra identitat "
"marqueu aquesta opció."
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr "mostrar identitat"
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
@@ -274,7 +288,7 @@ msgstr ""
"Només l'autor de la pregunta anònima pot mostrar la seva identitat. "
"Desmarqueu l'opció"
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -284,198 +298,218 @@ msgstr ""
"Si us plau, marqueu «mostrar identitat» o tornareu a carregar aquesta pàgina "
"i editeu de nou la pregunta"
-#: forms.py:923
-#, fuzzy
-msgid "this email will be linked to gravatar"
-msgstr "Diese E-Mail muß nicht mit Gravatar verknüpft werden."
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Echter Name"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "Website"
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr "Ciutat"
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr "Mostrar país"
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Geburtsdatum"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
"wird nicht angezeigt, aber für die Altersberechnung verwendet. Format: JJJJ-"
"MM-TT, Beispiel: 1980-05-27 für den 27. Mai 1980"
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "Profil"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Nickname"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr ""
"Ein Zugang mit dieser E-Mail-Adresse existiert bereits. Bitte verwenden Sie "
"eine andere E-Mail-Adresse."
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "E-Mail-Tag-Filter festlegen"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "Von mir gefragt"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "Von mir beantwortet"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Individuell ausgewählt"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Das ganze Forum (Tag-gefiltert)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Comentaris i entrades us mencionen"
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "Bitte wählen Sie eine der obenstehenden Optionen aus"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "Okay, versuchen wir's!"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "Ich möchte gar keine E-Mails erhalten, danke"
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "Bitte wählen Sie eine der obenstehenden Optionen aus"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
-#: urls.py:52
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
+#: urls.py:41
msgid "about/"
msgstr "ueber/"
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr "faq/"
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "datenschutz/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+#, fuzzy
+msgid "help/"
+msgstr "ajuda"
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "antworten/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "bearbeiten/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "revisionen/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+#, fuzzy
+msgid "questions"
+msgstr ""
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"Fragen\n"
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"preguntes"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "fragen/"
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "frage/"
-#: urls.py:87
+#: urls.py:92
#, fuzzy
msgid "retag/"
msgstr "tags/"
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "schliessen/"
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "oeffnen/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "antwort/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "abstimmen/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "tags/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "subscriure-per-etiquetes/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "benutzer/"
-#: urls.py:214
+#: urls.py:219
#, fuzzy
msgid "subscriptions/"
msgstr "E-Mail-Abonnements"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr "usuaris/actualitzacio_te_avatar_personalitzat/"
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "auszeichnungen/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "nachrichten/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "gelesen_markieren/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "upload/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "feedback/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "frage/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "zugang/"
@@ -611,25 +645,30 @@ msgid ""
msgstr ""
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Configuració del correu electrònic i alertes per correu electrònic"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Màxim nombre de missatges en un avís per correu electrònic"
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr "Freqüència predeterminada de notificació per a totes les preguntes"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
"Opció per definir la freqüència de les actualitzacions per correu de: totes "
"les preguntes."
-#: conf/email.py:62
+#: conf/email.py:71
#, fuzzy
msgid "Default notification frequency questions asked by the user"
msgstr "Fragen mit Tag '%(tag)s' anzeigen"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
@@ -637,13 +676,13 @@ msgstr ""
"Opció per definir la freqüència de les actualitzacions per correu de: "
"Preguntes fetes per l'usuari"
-#: conf/email.py:76
+#: conf/email.py:85
#, fuzzy
msgid "Default notification frequency questions answered by the user"
msgstr ""
"Beliebige Fragen und Antworten löschen und weitere Moderationsfunktionen"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
@@ -651,106 +690,106 @@ msgstr ""
"Opció per definir la freqüència de les actualitzacions per correu de: "
"Respostes fetes per l'usuari."
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
#, fuzzy
msgid "Send periodic reminders about unanswered questions"
msgstr "Es gibt hier keine unbeantworteten Fragen"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
#, fuzzy
msgid "Days before starting to send reminders about unanswered questions"
msgstr "Es gibt hier keine unbeantworteten Fragen"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
#, fuzzy
msgid "Send periodic reminders to accept the best answer"
msgstr "Es gibt hier keine unbeantworteten Fragen"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
#, fuzzy
msgid "Days before starting to send reminders to accept an answer"
msgstr "Es gibt hier keine unbeantworteten Fragen"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
#, fuzzy
msgid "Allow only one account per email address"
msgstr "Ihre E-Mail-Adresse <i>(wird nie veröffentlicht)</i>"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
#, fuzzy
msgid "Allow posting questions by email"
msgstr ""
@@ -760,22 +799,46 @@ msgstr ""
"ganz schnell. Ihre Frage wird für die Dauer des Anmeldevorgangs im "
"Hintergrund gespeichert und geht nicht verloren."
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr ""
+"<span class=\"strong big\">Sie können Ihre Frage formulieren, ohne sich "
+"vorher anmelden zu müssen</span>. Wenn Sie Ihre Frage speichern, werden Sie "
+"zum Anmeldeformular weitergeleitet. Einen neuen Zugang zu erstellen geht "
+"ganz schnell. Ihre Frage wird für die Dauer des Anmeldevorgangs im "
+"Hintergrund gespeichert und geht nicht verloren."
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -806,15 +869,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -822,11 +885,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -834,71 +897,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-#, fuzzy
-msgid "Explain how to change LDAP password"
-msgstr "Passwort ändern"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -937,11 +983,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -999,109 +1047,166 @@ msgstr ""
#: conf/forum_data_rules.py:126
#, fuzzy
+msgid "Are tags required?"
+msgstr "Mindestens ein Tag muß gesetzt sein."
+
+#: conf/forum_data_rules.py:135
+#, fuzzy
msgid "Mandatory tags"
msgstr "tags aktualisiert"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
#, fuzzy
msgid "Use wildcard tags"
msgstr "Tags"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
#, fuzzy
msgid "What should \"unanswered question\" mean?"
msgstr "unanswered questions"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+msgid "Common left sidebar"
+msgstr "Barra lateral esquerra comuna"
+
+#: conf/leading_sidebar.py:20
+msgid "Enable left sidebar"
+msgstr "Activar barra lateral esquerra"
+
+#: conf/leading_sidebar.py:29
+#, fuzzy
+msgid "HTML for the left sidebar"
+msgstr "Activar barra lateral esquerra"
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1176,16 +1281,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1363,6 +1468,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1566,28 +1675,28 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
#, fuzzy
msgid "Feedback site URL"
msgstr "Feedback"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1712,21 +1821,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1734,41 +1843,41 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
#, fuzzy
msgid "Select skin"
msgstr "Version auswählen"
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1780,11 +1889,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1793,21 +1902,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1816,21 +1925,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1839,19 +1948,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1862,19 +1971,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1941,41 +2050,67 @@ msgstr "Andere Dienste"
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
#, fuzzy
msgid "User settings"
msgstr ""
"Unsere Website benötigt Cookies, um technisch einwandfrei zu funktionieren."
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+msgid "Allow users change own email addresses"
+msgstr "Permetre als usuaris canviar la seva adreça de correu"
+
+#: conf/user_settings.py:41
#, fuzzy
msgid "Allow account recovery by email"
msgstr "Ihre E-Mail-Adresse <i>(wird nie veröffentlicht)</i>"
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+msgid "Default avatar for users"
+msgstr "Avatar d'usuari per defecte"
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -2088,340 +2223,353 @@ msgstr "Spam oder Werbung"
msgid "too localized"
msgstr "Zu eng gefaßt"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "neueste"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "älteste"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "aktiv"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "inaktiv"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "heißeste"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "kälteste"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "am häufigsten positiv bewertet"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "am seltensten positiv bewertet"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "Relevanz"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "alle"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "unbeantwortet"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "Favorit"
-#: const/__init__.py:64
+#: const/__init__.py:70
#, fuzzy
msgid "list"
msgstr "Tag-Liste"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr "núvol"
-#: const/__init__.py:78
+#: const/__init__.py:79
#, fuzzy
msgid "Question has no answers"
msgstr "Fragen, die ich beantwortet habe"
-#: const/__init__.py:79
+#: const/__init__.py:80
#, fuzzy
msgid "Question has no accepted answers"
msgstr "Fragen, die ich beantwortet habe"
-#: const/__init__.py:122
+#: const/__init__.py:125
#, fuzzy
msgid "asked a question"
msgstr "Frage stellen"
-#: const/__init__.py:123
+#: const/__init__.py:126
#, fuzzy
msgid "answered a question"
msgstr "Unbeantwortete"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "kommentierte Frage"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "kommentierte Antwort"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "überarbeitete Frage"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "überarbeitete Antwort"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "Auszeichnung erhalten"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "als beste Antwort markiert"
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "positiv bewertet"
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "negativ bewertet"
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "Bewertung zurückgezogen"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "Frage gelöscht"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "Antwort gelöscht"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "als beleidigend/illegal gemeldet"
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "tags aktualisiert"
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "Favorit ausgewählt"
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "Benutzerprofil komplettiert"
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "E-Mail-Update an Benutzer versandt"
-#: const/__init__.py:142
+#: const/__init__.py:145
#, fuzzy
msgid "reminder about unanswered questions sent"
msgstr "Unbeantwortete Fragen anzeigen"
-#: const/__init__.py:146
+#: const/__init__.py:149
#, fuzzy
msgid "reminder about accepting the best answer sent"
msgstr "als beste Antwort markiert"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "citat en l'entrada"
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "Frage beantwortet"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "Frage kommentiert"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr "Antwort kommentiert"
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr "Antwort akzeptiert"
+#, fuzzy
+msgid "answered question"
+msgstr "Unbeantwortete"
-#: const/__init__.py:206
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "überarbeitete Antwort"
+
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[geschlossen]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[gelöscht]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "ursprüngliche Version"
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "Tags verändert"
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr "no"
-#: const/__init__.py:218
+#: const/__init__.py:221
#, fuzzy
msgid "exclude ignored"
msgstr "Ignorierte Tags ausschließen"
-#: const/__init__.py:219
+#: const/__init__.py:222
#, fuzzy
msgid "only selected"
msgstr "Individuell ausgewählt"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "instantàniament"
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "täglich"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "wöchentlich"
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "Keine E-Mail"
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
#, fuzzy
msgid "mystery-man"
msgstr "gestern"
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
#, fuzzy
msgid "wavatar"
msgstr "Wie verändert man sein Profilbild (Avatar) und was ist Gravatar?"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "Gold"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "Silber"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "Bronze"
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr "Cap"
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr ""
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr "Avatar penjat"
-#: const/message_keys.py:15
+#: const/message_keys.py:21
#, fuzzy
msgid "most relevant questions"
msgstr "Stellen Sie nur Fragen, die für dieses Forum relevant sind."
-#: const/message_keys.py:16
+#: const/message_keys.py:22
#, fuzzy
msgid "click to see most relevant questions"
msgstr "Klicken Sie, um die höchstbewerteten Fragen anzuzeigen"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
#, fuzzy
msgid "by relevance"
msgstr "Relevanz"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "Klicken Sie, um die ältesten Fragen zu sehen"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
#, fuzzy
msgid "by date"
msgstr "Update"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "Klicken Sie, um die neuesten Fragen zu sehen"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "Klicken Sie, um die ältesten bearbeiteten Fragen zu sehen"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
#, fuzzy
msgid "by activity"
msgstr "aktiv"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "Klicken Sie, um die jüngst bearbeiteten Fragen zu sehen"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
#, fuzzy
msgid "click to see the least answered questions"
msgstr "Klicken Sie, um die ältesten Fragen zu sehen"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
#, fuzzy
msgid "by answers"
msgstr "Antworten"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
#, fuzzy
msgid "click to see the most answered questions"
msgstr "Klicken Sie, um die höchstbewerteten Fragen anzuzeigen"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "am wenigsten positiv bewertete Fragen"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
#, fuzzy
msgid "by votes"
msgstr "Stimmen"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "Klicken Sie, um die höchstbewerteten Fragen anzuzeigen"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
@@ -2429,7 +2577,7 @@ msgstr ""
"Us donem la benvinguda. Introduïu en el vostre perfil l'adreça de correu "
"electrònic (important) i el nom a mostrar, si ho creieu necessari."
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr "i-names werden nicht unterstützt."
@@ -2482,11 +2630,12 @@ msgid "Your user name (<i>required</i>)"
msgstr "Ihr Benutzername (<i>Pflichtfeld</i>)"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Ungültiger Benutzername."
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "Es gibt keinen Benutzer dieses Namens"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "einloggen/"
@@ -2526,7 +2675,7 @@ msgid "%(site)s user name and password"
msgstr "Bitte geben Sie Benutzernamen und Passwort ein."
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "Crear un compte amb contrasenya"
@@ -2618,13 +2767,13 @@ msgstr "Bitte geben Sie Benutzernamen und Passwort ein."
msgid "Sign in with your %(provider)s account"
msgstr "Registrar-se amb el vostre compte de %(provider)s"
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID %(openid_url)s ist ungültig"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
@@ -2633,69 +2782,69 @@ msgstr ""
"hi ha problemes connectant amb %(provider)s,torneu a provar-ho i useu un "
"altre proveïdor"
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
#, fuzzy
msgid "Your new password saved"
msgstr "Ihr Passwort wurde geändert."
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr "La combinació usuari/contrasenya no és correcte"
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr "Clicar una de les icones per registrar-se"
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr "S'han enviat el missatge de correu per recuperar el compte"
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr "Afegir un o més mètodes de registre."
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr "Afegir, treure o revalidar els seus mètodes d'entrada"
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr "S'ha recuperat el seu compte, però ..."
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr "La clau de recuperació d'aquest compte ha expirat o és invàlida"
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr "El mètode de registre %(provider_name)s no existeix"
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
#, fuzzy
msgid "Oops, sorry - there was some error - please try again"
msgstr ""
"Die beiden eingegebenen Passwörter stimmen nicht überein, bitte erneut "
"versuchen"
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr "La vostra entrada amb %(provider)s funciona bé"
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
"Sie müssen Ihre E-Mail-Adresse bestätigen. Mehr Informationen<a "
"id='validate_email_alert' href='%(details_url)s'>hier</a>."
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, fuzzy, python-format
msgid "Recover your %(site)s account"
msgstr "Legen Sie ein neues Passwort für Ihren Zugang fest."
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr "Comproveu el vostre correu electrònic i visiteu l'enllaç inclòs."
@@ -2704,29 +2853,29 @@ msgstr "Comproveu el vostre correu electrònic i visiteu l'enllaç inclòs."
msgid "Site"
msgstr "Titel"
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr "Principal"
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
#, fuzzy
msgid "Base Settings"
msgstr "einstellungen"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Valor per defecte: \"\""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Valor per defecte: "
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Valor per defecte: %s"
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, fuzzy, python-format
msgid "Allowed image file types are %(types)s"
msgstr "Erlaubte Dateitypen: '%(file_types)s'"
@@ -2744,7 +2893,7 @@ msgstr "Ort"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Passwort ändern"
@@ -2811,146 +2960,54 @@ msgstr "Desplegar tot"
msgid "Congratulations, you are now an Administrator"
msgstr "Gratulation, Sie sind jetzt Administrator"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-"<p>Per preguntar per correu electrònic:</p>\n"
-"<ul>\n"
-" <li>Escriviu l'assumpte com: [Etiqueta1; Etiqueta12] Títol de la "
-"pregunta</li>\n"
-" <li>En el cos del missatge escriviu els detalls de la vostre pregunta</"
-"li>\n"
-"</ul>\n"
-"<p>Les etiquetes poden esta formades per més d'una paraula. Les etiquetes "
-"estan separades per una coma o un punt i coma</p>\n"
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-"<p>S'ha produït un error publicant la vostre pregunta; contacteu amb "
-"l'administrador de %(site)s</p> "
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-"<p>Cal estar <a href=\"%(url)s\">registrat</a> per publicar preguntes s "
-"%(site)s a través del correu electrònic</p>"
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-"<p>La seva pregunta no s'ha publicat ja que el vostre compte d'usuari no té "
-"suficients privilegis</p>"
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
#, fuzzy
msgid "Please accept the best answer for this question:"
msgstr "Verfassen Sie die erste Antwort auf diese Frage!"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
#, fuzzy
msgid "Please accept the best answer for these questions:"
msgstr "Klicken Sie, um die ältesten Fragen zu sehen"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] "%(question_count)d pregunta actualitzada de %(topics)s"
msgstr[1] "%(question_count)d preguntes actualitzades de %(topics)s"
-#: management/commands/send_email_alerts.py:421
-#, fuzzy, 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>Hallo %(name)s,</p></p>Es gibt neues zu einer Frage:</p>"
-msgstr[1] "<p>Hallo %(name)s,</p><p>Es gibt neues zu %(num)d Fragen:</p>"
+#: management/commands/send_email_alerts.py:425
+#, python-format
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
+msgstr[0] ""
+msgstr[1] ""
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "Neue Frage"
-#: management/commands/send_email_alerts.py:455
-#, fuzzy
-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 ""
-"Schauen Sie rein und entdecken Sie neue Fragen und Antworten. Empfehlen Sie "
-"uns gern auch an Freunde und Bekannte weiter!"
-
-#: management/commands/send_email_alerts.py:465
-#, fuzzy
-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 ""
-"Die Einstellung, mit der Sie am häufigsten benachrichtigt werden, ist "
-"\"täglich\". Sollten Sie mehr als eine E-Mail pro Tag bekommen, "
-"benachrichtigen Sie uns bitte."
-
-#: management/commands/send_email_alerts.py:471
-#, fuzzy
-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 ""
-"Die Einstellung, mit der Sie am häufigsten benachrichtigt werden, ist "
-"\"wöchentlich\". Sollten Sie mehr als eine E-Mail pro Woche bekommen, "
-"benachrichtigen Sie uns bitte."
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-"Aus technischen Gründen kann es manchmal vorkommen, daß Sie Links empfangen, "
-"die Sie bereits gesehen haben. "
-
-#: management/commands/send_email_alerts.py:490
-#, fuzzy, python-format
+#: management/commands/send_email_alerts.py:474
+#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-"<p>Sie können die Häufigkeit, mit der Sie Benachrichtigungen erhalten, "
-"jederzeit <a href='%(link)s'>hier</a> einstellen oder sie gänzlich "
-"abschalten.<br/>Falls Sie diese Nachricht irrtümlich erhalten haben, "
-"informieren Sie uns bitte unter %(email)s.</p>"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2962,7 +3019,7 @@ msgstr[1] "%(question_count)d preguntes sense contestar de %(topics)s"
msgid "Please log in to use %s"
msgstr "Bitte einloggen"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
@@ -2970,7 +3027,7 @@ msgstr ""
"No pot acceptar o rebutjar les millors respostes ja que el seu compte està "
"bloquejat"
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
@@ -2978,20 +3035,20 @@ msgstr ""
"No pot acceptar o rebutjar les millors respostes ja que el seu compte està "
"deshabilitat"
-#: models/__init__.py:334
+#: models/__init__.py:337
#, fuzzy, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr "Erste Antwort auf eine eigene Frage akzeptiert"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr "Podrà acceptar aquesta resposta a partir de %(will_be_able_at)s"
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
@@ -3000,29 +3057,30 @@ msgstr ""
"Només els moderadors o l'autor original de la pregunta -%(username)s- poden "
"acceptar i rebutjar la millor resposta"
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "Über selbst verfaßte Beiträge kann nicht abgestimmt werden"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "El seu compte sembla que està bloquejat"
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "El seu compte sembla que està deshabilitat"
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr "Positiv bewerten benötigt mindestens %(points)s Punkte "
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr "Negativ bewerten benötigt mindestens %(points)s Punkte"
-#: models/__init__.py:431
+#: models/__init__.py:430
#, fuzzy
msgid "Sorry, blocked users cannot upload files"
msgstr ""
@@ -3030,7 +3088,7 @@ msgstr ""
"until this issue is resolved. Please contact the forum administrator to "
"reach a resolution."
-#: models/__init__.py:432
+#: models/__init__.py:431
#, fuzzy
msgid "Sorry, suspended users cannot upload files"
msgstr ""
@@ -3038,29 +3096,12 @@ msgstr ""
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "Das Hochladen von Dateien benötigt %(min_rep)s Punkte oder mehr"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-#, fuzzy
-msgid "blocked users cannot post"
-msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
-
-#: models/__init__.py:454 models/__init__.py:989
-#, fuzzy
-msgid "suspended users cannot post"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3075,18 +3116,18 @@ msgstr[1] ""
"Els comentaris (excepte el darrer) es poden editar durant %(minutes)s minuts "
"des de que es publiquen"
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
"Només els propietaris de l'entrada o els moderadors poden editar comentaris"
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
"El seu compte està deshabilitat, només pot comentar les entrades pròpies"
-#: models/__init__.py:510
+#: models/__init__.py:523
#, python-format
msgid ""
"Sorry, to comment any post a minimum reputation of %(min_rep)s points is "
@@ -3095,7 +3136,7 @@ msgstr ""
"Per comentar una entrada es cal tenir una reputació de %(min_rep)s puntsSí "
"podeu comentar les entrades i les respostes a les vostres preguntes"
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
@@ -3103,7 +3144,7 @@ msgstr ""
"Aquesta entrada s'ha esborrat. Només els seus propietaris, l'administrador "
"del lloc i els moderadors la poden veure."
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
@@ -3111,22 +3152,22 @@ msgstr ""
"Una entrada esborrada només la poden editar els moderadors, els "
"administradors del lloc o els propietaris de l'entrada."
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr "El seu compte està bloquejat, no podeu editar entrades"
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr "El seu compte està deshabilitat, només pot editar entrades pròpies"
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
"Per editar entrades wiki s'ha de tenir una reputació mínima de %(min_rep)s"
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
@@ -3135,7 +3176,7 @@ msgstr ""
"Per editar entrades d'altres persones s'ha de tenir una reputació mínima de "
"%(min_rep)s"
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3149,16 +3190,16 @@ msgstr[1] ""
"No es pot eliminar la pregunta ja que hi ha respostes d'altres usuaris amb "
"vots positius"
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr "El seu compte està bloquejat, no pot eliminar entrades"
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr "El seu compte està deshabilitat, només pot eliminar entrades pròpies"
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
@@ -3167,15 +3208,15 @@ msgstr ""
"per eliminar entrades d'altres persones cal una reputació mínima de "
"%(min_rep)s"
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr "El seu compte està bloquejat, no pot tancar preguntes"
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr "Des de que el seu compte està deshabilitat no pot tancar preguntes"
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
@@ -3184,14 +3225,14 @@ msgstr ""
"Per tancar entrades d'altres persones cal tenir una reputació mínima de "
"%(min_rep)s"
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
"Per tancar una pregunta pròpia cal tenir una reputació mínima de %(min_rep)s"
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
@@ -3200,79 +3241,71 @@ msgstr ""
"Només els moderadors, els administradors del lloc o els propietaris de les "
"entrades amb reputació mínim de %(min_rep)s poden reobrir preguntes."
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
"Per reobrir una pregunta pròpia cal tenir una reputació mínima de %(min_rep)s"
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "no es pot senyalar un missatge com ofensiu dues vegades"
-
-#: models/__init__.py:764
-#, fuzzy
-msgid "blocked users cannot flag posts"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
-#: models/__init__.py:766
+#: models/__init__.py:783
#, fuzzy
-msgid "suspended users cannot flag posts"
-msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr "El seu compte està bloquejat, no pot eliminar entrades"
-#: models/__init__.py:768
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr "s'han de tenir més de %(min_rep)s punts per senyalar spam"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
+msgstr ""
+"Per reetiquetar una pregunta ha de tenir una reputació mínima de %(min_rep)s "
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "excedit %(max_flags_per_day)s"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
-msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr "El seu compte està bloquejat, no pot eliminar entrades"
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
-msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
-#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
-msgstr[0] "s'han de tenir més d'%(min_rep)d punt per poder treure senyals"
-msgstr[1] "s'han de tenir més de %(min_rep)d punts per poder treure senyals"
+#: models/__init__.py:843
+#, fuzzy, python-format
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgstr[0] ""
+"Per reetiquetar una pregunta ha de tenir una reputació mínima de %(min_rep)s "
+msgstr[1] ""
+"Per reetiquetar una pregunta ha de tenir una reputació mínima de %(min_rep)s "
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr "No té permís per treure totes les senyals"
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
@@ -3280,78 +3313,78 @@ msgstr ""
"Només els propietaris de de la pregunta, els moderadors i els administradors "
"podenreetiquetar una pregunta esborrada"
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr "El seu compte està bloquejat, no pot reetiquetar preguntes"
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
"El seu compte està deshabilitat, només pot reetiquetar les preguntes pròpies"
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
"Per reetiquetar una pregunta ha de tenir una reputació mínima de %(min_rep)s "
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr "El seu compte està bloquejat, no pot eliminar un comentari"
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
"El seu compte està deshabilitat, només pot eliminar els comentaris pròpies"
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
"Per eliminar comentaris ha de tenir una reputació mínima de %(min_rep)s"
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "Bewertung kann nicht mehr zurückgenommen werden"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "a %(date)s"
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr "en dos dies"
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr "demà"
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, fuzzy, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "vor %(hr)d Stunde"
msgstr[1] "vor %(hr)d Stunden"
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, fuzzy, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "vor %(min)d Minute"
msgstr[1] "vor %(min)d Minuten"
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] "%(days)d dia"
msgstr[1] "%(days)d dies"
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
@@ -3360,55 +3393,55 @@ msgstr ""
"Els usuaris nous han d'esperar %(days)s per respondre la seva pròpia "
"pregunta. Podeu publicar una resposta %(left)s"
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
#, fuzzy
msgid "Anonymous"
msgstr "Anonym"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
#, fuzzy
msgid "Site Adminstrator"
msgstr "Ihr Forumsteam"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Moderador del Fòrum"
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
#, fuzzy
msgid "Suspended User"
msgstr "Der Absender ist"
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Usuari Bloquejat"
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
#, fuzzy
msgid "Registered User"
msgstr "Registrierter Benutzer"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Usuari Observat"
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Usuari Habilitat"
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, fuzzy, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "Punkte-Logbuch von %(user_name)s"
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] "una insígnia d'or"
msgstr[1] "%(count)d insígnies d'or"
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, fuzzy, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
@@ -3419,29 +3452,29 @@ msgstr[1] ""
"Silberne Auszeichnungen erzielt man durch regelmäßige, geduldige Teilnahme "
"am Forum."
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, fuzzy, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "Aktive Forumsteilnehmer werden in Bronze ausgezeichnet."
msgstr[1] "Aktive Forumsteilnehmer werden in Bronze ausgezeichnet."
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s i %(item2)s"
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr "%(user)s té %(badges)s"
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "Tags"
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -3450,7 +3483,7 @@ msgstr ""
"Ha rebut una insígnia '%(badge_name)s'. Vegeu la <a href=\"%(user_profile)s"
"\">perfil d'usuari</a>."
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr "S'ha desat la seva subscripció d'etiquetes"
@@ -3724,32 +3757,32 @@ msgstr "Tag-Schöpfer"
msgid "Created a tag used by %(num)s questions"
msgstr "Tag formuliert, das in 50 Fragen verwendet wurde"
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "Experte"
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "Sehr aktiv in einem bestimmten Tag"
-#: models/content.py:549
+#: models/post.py:1071
#, fuzzy
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "Die Frage wurde als Favorit ausgewählt"
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
"La resposat que cerca ja no es vàlida, ja què s'ha tret la pregunta original "
-#: models/content.py:572
+#: models/post.py:1094
#, fuzzy
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "Die Frage wurde als Favorit ausgewählt"
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
@@ -3757,7 +3790,7 @@ msgstr ""
"El comentari que cerca ja no es pot accedir ja què s'ha tret la pregunta "
"original"
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
@@ -3765,47 +3798,27 @@ msgstr ""
"El comentari que cerca ja no es pot accedir ja què s'ha tret la resposta "
"original"
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" i \"%s\""
-#: models/question.py:66
+#: models/question.py:57
#, fuzzy
msgid "\" and more"
msgstr "Mehr Informationen"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s hat die Frage bearbeitet"
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr "%(people)s Benutzer haben %(new_answer_count)s neue Antworten verfaßt"
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s Benutzer haben die Frage kommentiert"
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s Benutzer haben Kommentare zu Antworten verfaßt"
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s Benutzer haben Kommentare zu einer Antwort verfaßt"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "E-Mail-Adresse überprüfen"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Canviar pel moderador. Raó:</em> %(reason)s"
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
@@ -3814,7 +3827,7 @@ msgstr ""
"S'han afegit %(points)s punts a %(username)s per la seva contribució a la "
"pregunta %(question_title)s"
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
@@ -3823,72 +3836,74 @@ msgstr ""
"S'han tret %(points)s punts a %(username)s per la seva contribució a la "
"pregunta %(question_title)s"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "Interessant"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "Ignorieren"
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "Gesamtes Forum"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Fragen, die ich gestellt habe"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Fragen, die ich beantwortet habe"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "Individuell ausgewählte Fragen"
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr "Cites i comentaris a respostes"
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Instantàniament"
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Täglich"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "Wöchentlich"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "Keine E-Mail"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
#, fuzzy
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Bitte geben Sie Benutzernamen und Passwort ein."
# #-#-#-#-# django.po (0.7) #-#-#-#-#
# msgstr "Introduïu el vostre <span>nom d'usuari</span> i inicieu la sessió"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
#, fuzzy
msgid "(or select another login method above)"
msgstr "Bitte wählen Sie eine der oben genannten Optionen"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
#, fuzzy
msgid "Sign in"
msgstr "einloggen/"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "E-Mail-Adresse ändern"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3897,41 +3912,38 @@ msgstr "E-Mail-Adresse speichern"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
msgstr ""
-"<span class=\"strong big\">Geben Sie Ihre E-Mail-Adresse in untenstehende "
-"Box ein</span> falls Sie sie für Ihre Benachrichtigungs-E-Mails ändern "
-"möchten.<br>Im Moment verwenden Sie <strong>%(email)s</strong>"
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
-"<span class='strong big'>Bitte geben Sie unten Ihre E-Mail-Adresse ein.</"
-"span> Eine gültige E-Mail-Adresse wird für dieses Forum benötigt. Falls Sie "
-"möchten, können Sie <strong>Benachrichtigungsmails</strong> zu Sie besonders "
-"interessierenden Fragen, oder Neuzugängen abonnieren. Ihre E-Mail-Adresse "
-"wird auch benutzt, um ein individuelles sogenanntes <a "
-"href='%(gravatar_faq_url)s'><strong>Gravatar</strong></a>-Bild für Ihr Konto "
-"anzuzeigen. E-Mail-Adressen werden niemals öffentlich angezeigt."
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
msgstr ""
-"<strong>Ihre neue E-Mail-Adresse:</strong> (wird<strong>nicht</strong> "
-"öffentlich angezeigt; muß eine gültige Adresse sein)"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-"<strong>Ihre E-Mail-Adresse</strong> (wird<strong>nicht</strong> öffentlich "
-"angezeigt; muß eine gültige Adresse sein)"
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "E-Mail-Adresse speichern"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3939,173 +3951,113 @@ msgstr "E-Mail-Adresse speichern"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Abbrechen"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "E-Mail-Adresse überprüfen"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
msgstr ""
-"<span class=\"strong big\">Eine E-Mail mit einem Bestätigungslink wurde an "
-"%(email)s versandt.</span> Bitte <strong>klicken Sie auf den Link in der E-"
-"Mail</strong> oder geben Sie ihn via Kopieren+Einfügen in Ihren Internet-"
-"Browser ein. Die E-Mail-Überprüfung dient Ihrem und unserem Schutz vor Spam. "
-"Falls Sie eine <strong>andere E-Mail-Adresse</strong> verwenden möchten, "
-"können Sie sie <a href='%(change_email_url)s'><strong>erneut ändern</"
-"strong></a>."
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "E-Mail-Adresse nicht geändert"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
msgstr ""
-"<span class=\"strong big\">Ihre E-Mail-Adresse %(email)s wurde nicht "
-"geändert.</span> Falls Sie sie später ändern möchten, können Sie dieses "
-"jederzeit in Ihrem Benutzerprofil oder im <a "
-"href='%(change_email_url)s'><strong>vorigen Formular</strong></a> tun."
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "E-Mail-Adresse geändert"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
msgstr ""
-"<span class='big strong'>Ihre E-Mail-Adresse wurde auf %(email)s verändert.</"
-"span> Sie erhalten alle eventuell abonnierten E-Mail-Benachrichtigungen nun "
-"an diese Adresse."
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "E-Mail-Adresse bestätigt"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
msgstr ""
-"<span class=\"big strong\">Vielen Dank für die Bestätigung Ihrer E-Mail-"
-"Adresse!</span> Sie können jetzt <strong>Fragen stellen</strong> und "
-"<strong>beantworten</strong>. Sie können bei interessanten Fragen auch "
-"<strong>eine E-Mail-Benachrichtigung abonnieren</strong>, die Sie einmal "
-"täglich oder seltener über neue Entwicklungen wie Antworten und Kommentare "
-"informiert."
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "Bestätigungs-E-Mail nicht versandt"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "E-Mail-Adresse überprüfen"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
-"<span class='big strong'>Ihre momentane E-Mail-Adresse %(email)s wurde "
-"bereits bestätigt</span>. Es wurde keine neue Bestätigungsmail versandt. Sie "
-"können Ihre E-Mail-Adresse bei Bedarf <a href='%(change_link)s'>ändern</a>."
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "Registrieren"
-#: skins/common/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\">Sie sind zum ersten Mal mit Ihrem OpenID-"
-"Zugang von %(provider)s eingeloggt.</span> Bitte geben Sie einen "
-"<strong>Benutzernamen</strong> ein und hinterlegen Sie Ihre <strong>E-Mail-"
-"Adresse</strong>. Die E-Mail-Adresse ermöglicht <strong>Benachrichtigungen "
-"bei besonders interessanten Fragen</strong> und wird als Grundlage für Ihr "
-"Individuelles Benutzerbild, den <a "
-"href='%(gravatar_faq_url)s'><strong>Gravatar</strong></a>, benutzt.</p>"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, fuzzy, 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'>Der Benutzername %(username)s ist leider nicht "
-"mehr frei.</span></p><p> Eine gültige E-Mail-Adresse ist ebenfalls "
-"erforderlich - an sie senden wir (optionale) Benachrichtigungsmails, und mit "
-"ihr zeigen wir Ihr Benutzerbild (Gravatar) an. E-Mail-Adressen werden nicht "
-"öffentlich angezeigt und auch nicht an Dritte weitergegeben.</p>"
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-"<p><span class=\"big strong\">Sie sind zum ersten Mal mit Ihrem OpenID-"
-"Zugang von %(provider)s eingeloggt.</span> Sie können einen "
-"<strong>Benutzernamen</strong> eingeben oder Ihren Benutzernamen bei "
-"%(provider)s verwenden. Bitte hinterlegen Sie auch Ihre <strong>E-Mail-"
-"Adresse</strong>. Die E-Mail-Adresse ermöglicht <strong>Benachrichtigungen "
-"bei besonders interessanten Fragen</strong> und wird als Grundlage für Ihr "
-"Individuelles Benutzerbild, den <a "
-"href='%(gravatar_faq_url)s'><strong>Gravatar</strong></a>, benutzt.</p>"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr ""
-"<p><span class=\"big strong\">Sie sind hier zum ersten Mal mit Ihrem "
-"Facebook-Login.</span> Bitte legen Sie einen <strong>Benutzernamen</strong> "
-"fest und hinterlegen Sie Ihre <strong>E-Mail-Adresse</strong>. Die E-Mail-"
-"Adresse ermöglicht <strong>Benachrichtigungen bei besonders interessanten "
-"Fragen</strong> und wird als Grundlage für Ihr Individuelles Benutzerbild, "
-"den <a href='%(gravatar_faq_url)s'><strong>Gravatar</strong></a>, benutzt.</"
-"p>"
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr ""
-"Dieser Benutzername existiert leider bereits, bitte wählen Sie einen anderen."
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "<strong>Benutzername</strong> (<i>wird öffentlich angezeigt</i>)"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr ""
-"<strong>E-Mail-Adresse</strong> (<i>wird <strong>nicht</strong> öffentlich "
-"angezeigt; muß gültig sein</i>)"
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "Registrieren"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
msgstr ""
-"<strong>Benachrichtigungen per E-Mail abonnieren</strong> Das Abonnieren von "
-"E-Mail-Benachrichtigungen ist freiwillig. <br/>Das Forum versenden bis zu "
-"<strong>einer Benachrichtigung pro Woche</strong> - nur wenn es auch "
-"wirklich Neues gibt.<br/>Sie können die Benachrichtigungshäufigkeit "
-"jederzeit in Ihrem Benutzerprofil anpassen."
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "Bitte wählen Sie eine der oben genannten Optionen"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr ""
-"Das Tag-Filterwerkzeug finden Sie nach dem Einloggen in der rechten Spalte."
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "Zugang anlegen"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "Registrieren"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -4129,9 +4081,10 @@ msgstr "Bitte hier anmelden:"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr "Ihr Forumsteam"
#: skins/common/templates/authopenid/email_validation.txt:1
@@ -4149,9 +4102,10 @@ msgstr ""
"vermeiden."
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
"Falls Sie diese Nachricht irrtümlich erhalten haben, brauchen Sie nichts zu "
@@ -4202,10 +4156,11 @@ msgstr ""
"veröffentlicht, sobald Sie sich einloggen.</span>"
#: skins/common/templates/authopenid/signin.html:28
+#, fuzzy
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
"Seleccioneu un dels serveis per entrar usant OpenID segur o tecnologies "
"similars. La contrasenya del servei extern es manté sempre confidencial, no "
@@ -4252,136 +4207,99 @@ msgstr ""
"Comproveu el vostre correu electrònic i seguiu l'enllaç adjunt per re-"
"connectar al vostre compte"
-#: skins/common/templates/authopenid/signin.html:87
+#: skins/common/templates/authopenid/signin.html:89
#, fuzzy
-msgid "Please enter your <span>user name and password</span>, then sign in"
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Bitte geben Sie Benutzernamen und Passwort ein."
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Bitte hier anmelden:"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr "No s'ha pogut entrar, torneu a provar"
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
#, fuzzy
msgid "Login or email"
msgstr "Keine E-Mail"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Passwort"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Login"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr "Per canviar la vostre contrasenya, introduïu la nova dues vegades"
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "Neues Passwort angelegt"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
#, fuzzy
msgid "Please, retype"
msgstr "Bitte geben Sie Ihr Passwort erneut ein"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr "Aquests són els seus mètodes d'entrada actuals"
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr "proveïdor"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "Zuletzt gesehen"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr "esborra, si voleu"
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "löschen"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "Zugang gelöscht."
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "Sie haben noch Fragen?"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr "Entreu la vostra adreça de correu electrònic per tenir una nova clau"
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
"Per recuperar el vostre compte entrar la vostra adreça de correu electrònic"
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
#, fuzzy
msgid "recover your account via email"
msgstr "Legen Sie ein neues Passwort für Ihren Zugang fest."
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr "Enviar una nova clau de recuperació"
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
#, fuzzy
msgid "Recover your account via email"
msgstr "Legen Sie ein neues Passwort für Ihren Zugang fest."
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr "Warum OpenID verwenden?"
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr "Mit OpenID müssen Sie keinen neuen Account anlegen."
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr ""
-"Sie können sich ohne Bedenken mit dem selben OpenID-Zugang auf unbegrenzt "
-"vielen Webseiten einloggen."
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-"Es gibt mehr als 160 Millionen OpenID-Zugänge und mehr als 10.000 Seiten, "
-"die OpenID akzeptieren."
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr ""
-"OpenID basiert auf einem international anerkannten Standard und wird von "
-"zahlreichen großen Firmen unterstützt."
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "Mehr Informationen"
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr "Einen OpenID-Zugang anlegen"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "Registrieren"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
#, fuzzy
msgid "Please register by clicking on any of the icons below"
@@ -4397,31 +4315,30 @@ msgid "Create login name and password"
msgstr "Benutzernamen und Passwort anlegen"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
msgstr ""
-"<span class='strong big'>Falls Sie möchten, können Sie auch einen "
-"Benutzernamen und ein Passwort hier im Forum anmelden. Wir unterstützen aber "
-"auch <strong>OpenID</strong>, eine Technik, mit der Sie sich nur einmal z.B. "
-"bei Ihrem Internet-Provider registrieren müssen. Mit der bei Ihrem Provider "
-"angelegten OpenID können Sie sich dann hier einloggen. Wenn Sie z.B. einen "
-"Zugang bei Google haben, haben Sie bereits auch einen OpenID-Zugang."
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr ""
"Bitte geben Sie zum Schutz vor Spam die untenstehenden zwei Wörter ein."
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Zugang anlegen"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "oder"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "zum OpenID-Login zurückkehren"
@@ -4487,72 +4404,73 @@ msgstr ""
msgid "Delete These"
msgstr "Antwort gelöscht"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "Link zur Antwort"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "Frage beantworten"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "Link"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "bearbeiten"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "Link"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "Wiederherstellen"
+
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "remove all flags"
+msgid "remove offensive flag"
+msgstr "als beleidigend/illegal gemeldet"
+
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+#, fuzzy
+msgid "remove flag"
msgstr "Alle Tags zeigen"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
"Beitrag melden (z.B. Spam, unerwünschte Werbung, Beleidigungen, illegale "
"Inhalte usw.)"
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "Als beleidigend melden"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-#, fuzzy
-msgid "remove flag"
-msgstr "Alle Tags zeigen"
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "Wiederherstellen"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "bearbeiten"
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Frage beantworten"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "Diese Antwort ist als korrekt ausgewählt worden"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
#, fuzzy
msgid "mark this answer as correct (click again to undo)"
msgstr "Zur Favoritenliste hinzufügen (zum Abbrechen erneut klicken)"
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, fuzzy, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "Der Fragesteller hat diese Antwort als die korrekte markiert"
-
#: skins/common/templates/question/closed_question_info.html:2
#, fuzzy, python-format
msgid ""
@@ -4568,45 +4486,53 @@ msgid "close date %(closed_at)s"
msgstr "Schließungszeitpunkt close date %(closed_at)s"
#: skins/common/templates/question/question_controls.html:6
-#, fuzzy
-msgid "retag"
-msgstr "Tags verändert"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "wieder öffnen"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "schließen"
-#: skins/common/templates/widgets/edit_post.html:21
+#: skins/common/templates/question/question_controls.html:35
+#, fuzzy
+msgid "retag"
+msgstr "Tags verändert"
+
+#: skins/common/templates/widgets/edit_post.html:22
#, fuzzy
-msgid "one of these is required"
+msgid ", one of these is required"
msgstr "Dieses Feld wird benötigt"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "Tags"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(Pflichtfeld)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Die Markdown-Echtzeit-Vorschau ein- oder ausblenden"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "Vorschau ausblenden"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Tags"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
@@ -4614,17 +4540,17 @@ msgstr "Tags, die mich interessieren"
# #-#-#-#-# django.po (0.7) #-#-#-#-#
# posem un signe + per què 'afegir' es talla i queda 'afegi'
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
#, fuzzy
msgid "add"
msgstr "Hinzufügen"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "Ignorierte Tags"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
#, fuzzy
msgid "Display tag filter"
msgstr "E-Mail-Tag-Filter festlegen"
@@ -4677,7 +4603,7 @@ msgid "back to previous page"
msgstr "Zurück zur vorigen Seite"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr "Alle Fragen zeigen"
@@ -4708,11 +4634,6 @@ msgstr "Zeige neueste Fragen"
msgid "see tags"
msgstr "Zeige Tags"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4742,17 +4663,20 @@ msgstr "Überarbeitung speichern"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "Vorschau einblenden"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "Frage stellen"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "Stellen Sie Ihre Frage"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr ""
@@ -4767,8 +4691,8 @@ msgid "Badge \"%(name)s\""
msgstr "Insígnia \"%(name)s\""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, fuzzy, python-format
msgid "%(description)s"
msgstr "E-Mail-Abonnements"
@@ -4779,11 +4703,7 @@ msgid_plural "users received this badge:"
msgstr[0] "Benutzer hat dieses Abzeichen:"
msgstr[1] "Benutzer haben dieses Abzeichen:"
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Zusammenfassung Auszeichnungen"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "Auszeichnungen"
@@ -4797,8 +4717,8 @@ msgstr ""
#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"Es gibt im Moment drei Stufen von Auszeichnungen: <strong>Gild</strong>, "
"<strong>Silber</strong> und <strong>Bronze</strong>.\n"
@@ -4806,44 +4726,45 @@ msgstr ""
"Falls Sie Ideen für neue Auszeichnungen haben, senden Sie uns diese über die "
"<a href='%(feedback_faq_url)s'>Feedback</a></strong>-Seite."
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Auszeichnungs-Stufen"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr "insígnia d'or: l'honor més alt i és molt rara"
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
msgstr ""
-"Goldene Auszeichnungen erreicht man mit regelmäßiger, überdurchschnittlicher "
-"Beteiligung."
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
"insígnia de plata: atorgada ocasionalment per contribucions de molta alta "
"qualitat"
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+#, fuzzy
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr ""
-"Silberne Auszeichnungen erzielt man durch regelmäßige, geduldige Teilnahme "
-"am Forum."
+"insígnia de plata: atorgada ocasionalment per contribucions de molta alta "
+"qualitat"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr ""
"Bronzene Auszeichnungen sind die einfachste Auszeichnungsstufe. Man erhält "
"einige von ihnen durch einigermaßen aktive Teilnahme. Sie werden oft als "
"Ehrenauszeichnung verliehen."
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "Aktive Forumsteilnehmer werden in Bronze ausgezeichnet."
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Frage schließen"
@@ -4860,11 +4781,10 @@ msgstr "Gründe"
msgid "OK to close"
msgstr "OK zu schließen"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4885,15 +4805,17 @@ msgstr ""
"strong> und <strong>themenbezogen</strong> sein."
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Bevor Sie fragen: Bitte benutzen Sie die Suchfunktion, um sicherzustellen, "
"daß die Frage nicht bereits gestellt wurde."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "Was für Fragen sollten nicht gestellt werden?"
#: skins/default/templates/faq_static.html:11
@@ -4910,14 +4832,11 @@ msgstr "Was sollte ich in meinen Antworten vermeiden?"
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
-"Wir sind ein Forum zum Stellen und Beantworten von Fragen - <strong>kein "
-"Diskussionsforum</strong>. Bitte verzichten Sie in Ihren Antworten auf "
-"Diskussionen. Kurze Gespräche, Kritik und Klärungen sind über die "
-"Kommentarfunktion möglich. "
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4932,24 +4851,26 @@ msgid "This website is moderated by the users."
msgstr "Dieses Forum wird von seinen Benutzern moderiert."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"Je höher der Punktestand eines Benutzers, desto mehr Funktionen stehen ihm "
"zur Verfügung, z.B. das Bearbeiten und später auch Löschen anderer Beiträge."
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "Wie funktioniert das Punktesystem?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
msgstr ""
-"Wenn eine Frage oder Antwort positiv bewertet wird, erhält der Autor Punkte. "
-"Diese Punkte sind ein ungefähres Abbild von dem Grad, in dem dem Benutzer "
-"von der Gemeinschaft vertraut wird. Mit wachsendem Punktestand werden immer "
-"mehr Möglichkeiten freigeschaltet."
#: skins/default/templates/faq_static.html:22
#, fuzzy, python-format
@@ -4977,74 +4898,69 @@ msgstr ""
msgid "upvote"
msgstr "Positiv bewerten"
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr "Tags benutzen"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "Kommentare hinzufügen"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "Negativ bewerten"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "Erste Antwort auf eine eigene Frage akzeptiert"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "Eigene Fragen öffnen und schließen"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
#, fuzzy
msgid "retag other's questions"
msgstr "Vergebene Tags bearbeiten"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "Als \"Community Wiki\" markierte Fragen beantworten"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "Beliebige Antworten bearbeiten"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "\"delete any comment"
+msgid "delete any comment"
msgstr "Kommentare löschen"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "Wie verändert man sein Profilbild (Avatar) und was ist Gravatar?"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
-msgstr ""
-"<p>Das Bild, das überall im Forum neben dem Benutzernamen angezeigt wird, "
-"heißt <strong>Gravatar</strong> (\"<strong>G</strong>lobally <strong>R</"
-"strong>ecognized <strong>Avatar</strong>).</p><p>So funktioniert es: Ein "
-"<strong>kryptographischer Schlüssel</strong> - ein nicht knackbarer code - "
-"wird aus Ihrer E-Mail-Adresse berechnet. Sie laden Ihr gewünschtes "
-"Profilbild auf der Website <a href='http://gravatar.com'><strong>gravatar."
-"com</strong></a> hoch.</p><p>Alle Foren, Blogs und andere Webseiten, die "
-"Gravatar nutzen, können so Ihr Profilbild darstellen, ohne daß Ihre E-Mail-"
-"Adresse öffentlich wird.</p><p>Um ein Profilbild hochzuladen, "
-"<strong>registrieren Sie sich</strong> auf <a href='http://gravatar."
-"com'><strong>gravatar.com</strong></a> mit der selben E-Mail-Adresse, die "
-"Sie hier bei uns angegeben haben und folgen Sie den dort angegebenen "
-"Schritten. Laden Sie kein Profilbild hoch, wird ein neutrales Standard-"
-"Symbol angezeigt.</p>"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Muß ich ein neues Passwort anlegen, um mich zu registrieren?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
#, fuzzy
msgid ""
"No, you don't have to. You can login through any service that supports "
@@ -5053,20 +4969,20 @@ msgstr ""
"Nein. Sie können sich über jeden Dienst einloggen, der OpenID unterstützt, "
"zum Beispiel Google, Yahoo, AOL usw."
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
#, fuzzy
msgid "\"Login now!\""
msgstr "Jetzt einloggen"
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "Warum können andere Benutzer meine Fragen und Antworten bearbeiten?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr "Das Ziel dieser Seite ist:"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "
@@ -5075,21 +4991,21 @@ msgstr ""
"Fragen und Antworten nach dem Wiki-Prinzip für alle bearbeitbar zu machen, "
"sodaß jeder die Qualität der Beiträge verbessern kann."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
"Falls Ihnen dies nicht gefällt, ist unser Forum vielleicht nicht das "
"richtige für Sie."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "Sie haben noch Fragen?"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Bitte <a href='%(ask_question_url)s'>stellen</a> Sie Ihre Frage und helfen "
"Sie uns, das Forum stetig zu verbessern!"
@@ -5158,6 +5074,68 @@ msgstr ""
"\n"
"Hallo, dies ist Feedback zu %(site_title)s \n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, python-format
+msgid "Welcome %(username)s,"
+msgstr "Benvingut-uda %(username)s"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr "Benvingut"
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5283,62 +5261,60 @@ msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr "Diese Frage wieder eröffnen"
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr "seguir a %(alias)s"
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr "no seguir a %(alias)s"
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr "seguint a %(alias)s"
-#: skins/default/templates/macros.html:29
-#, fuzzy
-msgid "i like this question (click again to cancel)"
-msgstr "Ich halte diesen Beitrag für hilfreich (Zum Abbrechen erneut klicken)"
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "Ich halte diese Antwort für hilfreich (zum Abbrechen erneut klicken)"
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr "Aktuelle Anzahl Bewertungen"
-#: skins/default/templates/macros.html:43
-#, fuzzy
-msgid "i dont like this question (click again to cancel)"
-msgstr "Ich halte nichts von diesem Beitrag (Zum Abbrechen erneut klicken)"
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr ""
-"Ich halte diese Antwort für nicht hilfreich (zum Abbrechen erneut klicken)"
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr "Anonym"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr "aquesta entrada està marcaa com a wiki comunitari"
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
@@ -5347,117 +5323,97 @@ msgstr ""
"Aquesta entrada és un wiki.\n"
" Qualsevol amb una reputació de més de %(wiki_min_rep)s pot contribuir"
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "gefragt"
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "geantwortet"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "veröffentlicht"
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "aktualisiert"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "Fragen mit Tag '%(tag)s' anzeigen"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "Kommentar löschen"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "Kommentar hinzufügen"
-
-#: skins/default/templates/macros.html:308
-#, fuzzy, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "<strong>1</strong> mehr"
-msgstr[1] "<strong>%(counter)s</strong> mehr"
-
-#: skins/default/templates/macros.html:310
-#, fuzzy, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "<strong>1</strong> weiterer Kommentar"
-msgstr[1] "<strong>%(counter)s</strong> weitere Kommentare"
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "%(username)s Gravatar-Bild"
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "Punkte-Logbuch von %(user_name)s"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "Vorige"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "aktuelle Seite"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "Seite %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "Nächste Seite"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "Beiträge pro Seite"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, fuzzy, python-format
msgid "responses for %(username)s"
msgstr "Bitte einen Benutzernamen eingeben"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, fuzzy, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "Reaktionen"
msgstr[1] "Reaktionen"
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
#, fuzzy
msgid "no new responses yet"
msgstr "Reaktionen"
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, fuzzy, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "Erster gemeldeter Beitrag"
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, fuzzy, python-format
msgid "%(new)s new flagged posts"
msgstr "Erster gemeldeter Beitrag"
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, fuzzy, python-format
msgid "%(seen)s flagged posts"
msgstr "Erster gemeldeter Beitrag"
@@ -5466,10 +5422,39 @@ msgstr "Erster gemeldeter Beitrag"
msgid "Questions"
msgstr "Fragen"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
-msgstr "Datenschutzrichtlinien"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "<strong>1</strong> mehr"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "<strong>1</strong> mehr"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "Kommentar hinzufügen"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Eigene Frage beantworten"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "Ihre Antwort"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr ""
+"Bitte loggen Sie sich ein oder registrieren Sie sich, um die Antwort "
+"endgültig zu speichern."
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
@@ -5478,8 +5463,9 @@ msgstr "Frage bearbeiten"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Tags ändern"
+#, fuzzy
+msgid "Retag question"
+msgstr "Verwandte / ähnliche Fragen"
#: skins/default/templates/question_retag.html:21
#, fuzzy
@@ -5541,6 +5527,13 @@ msgstr "Diese Frage wieder eröffnen"
msgid "Reopen this question"
msgstr "Diese Frage wieder eröffnen"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5571,17 +5564,17 @@ msgstr "Die Frage wurde aus folgendem Grund geschlossen"
msgid "Subscribe"
msgstr "Tags benutzen"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Tag-Liste"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr "Etiquetes que coincideixen \"%(stag)s\""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Tag-Liste"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
#, fuzzy
msgid "Sort by &raquo;"
msgstr "Sortieren nach:"
@@ -5602,7 +5595,7 @@ msgstr "nach Tag-Verwendungshäufigkeit"
msgid "by popularity"
msgstr "nach Popularität"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "Nichts gefunden"
@@ -5616,8 +5609,10 @@ msgstr "veure les persones amb la reputació més alta"
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "Punktestand"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr "reputació"
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5648,7 +5643,7 @@ msgstr "Benutzer mit Wort %(suser)s"
msgid "Nothing found."
msgstr "Nichts gefunden."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, fuzzy, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5665,42 +5660,42 @@ msgstr "mit Beiträgen von %(author_name)s"
msgid "Tagged"
msgstr "Getaggt"
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr "Suchtipps:"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr "Autor zurücksetzen"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
#, fuzzy
msgid " or "
msgstr "oder"
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr "Tags zurücksetzen"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr "Von vorn beginnen"
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
"- um den Kontext zu erweitern, oder graben Sie sich ein, indem Sie weitere "
"Tags hinzufügen und die Suchabfrage überarbeiten."
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr "Suchtipp:"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr ""
"Tags und eine Suchabfrage hinzufügen, um genauere Suchergebnisse zu erzielen"
@@ -5742,19 +5737,19 @@ msgstr "ganz von Vorne beginnen"
msgid "Please always feel free to ask your question!"
msgstr "Sie können jederzeit gern Ihre eigene Frage stellen!"
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr "Sie haben nicht gefunden, wonach Sie gesucht haben?"
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr "Bitte stellen Sie Ihre Frage!"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
msgid "subscribe to the questions feed"
msgstr "Fragen-RSS-Feed abonnieren"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5769,129 +5764,104 @@ msgstr ""
"funcionar, habiliti el javascript del seu navegador (<a href="
"\"%(noscript_url)s\">com?</a>)"
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, fuzzy, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] "Tags müssen kürzer als %(max_chars)d Zeichen sein"
msgstr[1] "Tags müssen kürzer als %(max_chars)d Zeichen sein"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, fuzzy, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "Bitte %(tag_count)d Tags oder weniger benutzen"
msgstr[1] "Bitte %(tag_count)d Tags oder weniger benutzen"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, fuzzy, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
msgstr "Bis zu 5 Tags mit jeweils weniger als 20 Buchstaben"
#: skins/default/templates/question/answer_tab_bar.html:3
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
-"Eine Antwort:"
+" %(counter)s Resposta:\n"
+" "
msgstr[1] ""
"\n"
-"%(counter)s Antworten:"
+" %(counter)s Respostes:\n"
+" "
+
+#: skins/default/templates/question/answer_tab_bar.html:11
+msgid "Sort by »"
+msgstr "Ordenar per »"
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr "Älteste Antworten werden als Erstes angezeigt"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "älteste"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "Neueste werden zuerst angezeigt"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "Neueste Antworten"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "Höchstbewertete werden zuerst angezeigt"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "Höchstbewertet"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "Eigene Frage beantworten"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr ""
"Bitte loggen Sie sich ein oder registrieren Sie sich, um die Antwort "
"endgültig zu speichern."
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "Ihre Antwort"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr "Verfassen Sie die erste Antwort auf diese Frage!"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
-"<span class='strong big'>Beginnen Sie Ihre Antwort als anonymer Gast</span> "
-"- Ihre Antwort wird gespeichert, während Sie sich danach einloggen oder "
-"einen neuen Zugang anlegen. Bitte versuchen Sie, eine <strong>sachliche "
-"Antwort mit Substanz</strong> zu verfassen. Für Rückfragen oder "
-"Klarstellungen nutzen Sie bitte die Kommentarfunktion unter der Frage. "
-"Nachdem Sie sich angemeldet und/oder eingeloggt haben, können Sie auch über "
-"die Qualität der Frage abstimmen, vergessen Sie das nicht!"
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
msgstr ""
-"<span class='big strong'>Die eigene Frage zu beantworten ist ausdrücklich "
-"erlaubt</span>, aber es muß eine echte <strong>Antwort</strong> sein! "
-"Vergessen Sie nicht, daß Sie Ihre ursprüngliche Frage <strong>jederzeit "
-"verändern oder bei Bedarf auch wieder löschen können</strong>. Bitte "
-"verwenden Sie die <strong>Kommentarfunktion</strong> für Diskussionen und "
-"Rückfragen, und bitte vergessen Sie nicht, die eingehenden Antworten mit "
-"Ihrer Stimme zu bewerten!"
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+msgid ""
+"<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)!"
msgstr ""
-"Bitte verfassen Sie eine <strong>sachliche Antwort mit Substanz</strong>. Um "
-"einen <strong>Kommentar</strong> zu verfassen, nutzen Sie bitte die "
-"Kommentarfunktion unter jeder Frage und Antwort. Sie können Ihre Antwort "
-"jederzeit <strong>bearbeiten</strong> - es ist normalerweise nicht nötig, "
-"eine Frage doppelt zu beantworten. Vergessen Sie auch nicht, über die Frage "
-"und andere Antworten <strong>abzustimmen</strong> - dies hilft, die besten "
-"Fragen und Antworten herauszufinden!"
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
msgstr ""
-"Bitte loggen Sie sich ein oder registrieren Sie sich, um die Antwort "
-"endgültig zu speichern."
-
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Frage beantworten"
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5911,49 +5881,49 @@ msgstr "oder"
msgid "email"
msgstr "E-Mail"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Tags"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "Fragen mit den meisten Antworten"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "Alle Fragen"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "Alle Fragen"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "Fragen mit den meisten Antworten"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "Alle Fragen"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] "%(count)s seguidor"
msgstr[1] "%(count)s seguidors"
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "E-Mail-Benachrichtigungen abgestellt"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
@@ -5961,12 +5931,12 @@ msgstr ""
"<strong>Aquí</strong> (un cop connectat) es pot inscriure per rebre "
"actualitzacions periòdiques sobre aquesta pregunta"
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "Fragen-RSS-Feed abonnieren"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "Fragen-RSS-Feed abonnieren"
@@ -5976,60 +5946,49 @@ msgid "Stats"
msgstr "Estadístiques"
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "Gefragt"
+#, fuzzy
+msgid "Asked"
+msgstr "gefragt"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "Frage betrachtet:"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "mal"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "Zuletzt aktualisiert"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Verwandte / ähnliche Fragen"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr ""
-"<strong>Benachrichtigung bei neuen Antworten</strong> einmal täglich per E-"
-"Mail"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
-msgstr ""
-"<strong>Benachrichtigung bei neuen Antworten</strong> einmal wöchentlich per "
-"E-Mail"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
#, fuzzy
-msgid "Notify me immediately when there are any new answers"
+msgid "Email me when there are any new answers"
msgstr ""
"<strong>Benachrichtigung bei neuen Antworten</strong> einmal wöchentlich per "
"E-Mail"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
-msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr ""
-"(Sie können die Frequenz der Benachrichtigungen jederzeit in Ihrem "
-"<strong><a href='%(profile_url)s?sort=email_subscriptions'>Profil</a></"
-"strong> ändern)"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
"<span class='strong'>Hier</span> können Sie regelmäßige Benachrichtigungen "
"für diese Frage abonnieren, sobald Sie sich eingeloggt haben."
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+#, fuzzy
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+"<strong>Aquí</strong> (un cop connectat) es pot inscriure per rebre "
+"actualitzacions periòdiques sobre aquesta pregunta"
+
#: skins/default/templates/user_profile/user.html:12
#, fuzzy, python-format
msgid "%(username)s's profile"
@@ -6061,8 +6020,12 @@ msgstr "Registrierter Benutzer"
msgid "Screen Name"
msgstr "Nickname"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+msgid "(cannot be changed)"
+msgstr "(no es pot canviar)"
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Update"
@@ -6076,18 +6039,21 @@ msgstr "E-Mail-Abonnements"
msgid "Email subscription settings"
msgstr "E-Mail-Abonnementeinstellungen"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
msgstr ""
-"<span class='big strong'>Häufigkeit von E-Mail-Benachrichtigungen "
-"einstellen</span> Abonnieren Sie Benachrichtigungen über Neuigkeiten in "
-"Fragen, die Sie interessieren. Falls Sie keine E-Mails erhalten möchten - "
-"wählen Sie \"Keine E-Mail\".<br/>Benachrichtigungen werden nur versandt, "
-"wenn es neues in der betreffenden Frage gibt."
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Keine E-Mails mehr senden"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Ihre E-Mail-Adresse</strong> (wird<strong>nicht</strong> öffentlich "
+"angezeigt; muß eine gültige Adresse sein)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -6116,21 +6082,25 @@ msgid "flagged items (%(flag_count)s)"
msgstr "Bitte %(tag_count)d Tags oder weniger benutzen"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
#, fuzzy
msgid "select:"
msgstr "löschen"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
#, fuzzy
msgid "seen"
msgstr "Zuletzt gesehen"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
#, fuzzy
msgid "new"
msgstr "neueste"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
#, fuzzy
msgid "none"
msgstr "Bronze"
@@ -6149,6 +6119,16 @@ msgstr "als beste Antwort markiert"
msgid "dismiss"
msgstr "rebutjar"
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "Alle Tags zeigen"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "löschen"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "Profil aktualisieren"
@@ -6163,7 +6143,8 @@ msgid "real name"
msgstr "Realname"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "Mitglied seit"
#: skins/default/templates/user_profile/user_info.html:63
@@ -6171,7 +6152,8 @@ msgid "last seen"
msgstr "Zuletzt gesehen"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
+#, fuzzy
+msgid "website"
msgstr "Website"
#: skins/default/templates/user_profile/user_info.html:75
@@ -6324,20 +6306,17 @@ msgid "%(username)s's network is empty"
msgstr "Benutzerprofil"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
#, fuzzy
msgid "activity"
msgstr "aktiv"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr "font"
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr "reputació"
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "Ihr Punkte-Logbuch."
@@ -6360,21 +6339,16 @@ msgstr[0] "<span class=\"count\">1</span> Frage"
msgstr[1] "<span class=\"count\">%(counter)s</span> Fragen"
#: skins/default/templates/user_profile/user_stats.html:16
-#, fuzzy, python-format
-msgid "<span class=\"count\">%(counter)s</span> Answer"
-msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
-msgstr[0] "<span class=\"count\">1</span> Antwort"
-msgstr[1] "<span class=\"count\">%(counter)s</span> Antworten"
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "Resposta"
+msgstr[1] "Respostes"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "Diese Antwort ist %(answer_score)s mal positiv bewertet worden"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "Diese Antwort ist als korrekt ausgewählt worden"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, fuzzy, python-format
msgid "(%(comment_count)s comment)"
@@ -6412,14 +6386,14 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] "<span class=\"count\">1</span> Tag"
msgstr[1] "<span class=\"count\">%(counter)s</span> Tags"
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, fuzzy, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
msgstr[0] "<span class=\"count\">1</span> Auszeichnung"
msgstr[1] "<span class=\"count\">%(counter)s</span> Auszeichnungen"
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "Tipps"
@@ -6428,7 +6402,7 @@ msgstr "Tipps"
msgid "User profile"
msgstr "Benutzerprofil"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "Kommentare und Antworten"
@@ -6437,49 +6411,41 @@ msgid "followers and followed users"
msgstr "usuaris seguidors i seguits"
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "Punkte-Statistik"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "Punkte-Protokoll"
-
#: skins/default/templates/user_profile/user_tabs.html:25
#, fuzzy
msgid "questions that user is following"
msgstr "Vom Benutzer als Favoriten markierte Fragen"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "Jüngste Aktivitäten"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "Abstimmungsverhalten"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "abgegebene Stimmen"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "Stimmen"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "E-Mail-Abonnementeinstellungen"
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
#, fuzzy
msgid "moderate this user"
msgstr "Diesen Benutzer verwalten"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "Stimmen"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "Tipps"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr ""
"Bitte formulieren Sie Ihre Frage so, daß sie für dieses Forum relevant ist."
@@ -6490,8 +6456,10 @@ msgstr ""
"Diskussion einzusteigen."
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "Bitte versuchen Sie, Details einzubringen."
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "Bitte erwähnen Sie in Ihrer Frage genügend Details."
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -6505,7 +6473,8 @@ msgstr "Siehe die häufig gestellten Fragen"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Tipps zu Markdown"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6530,11 +6499,6 @@ msgid "**bold** or __bold__"
msgstr "**fett** oder __fett__"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "Link"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6561,10 +6525,6 @@ msgstr "Grundlegende HTML-Tags werden ebenfalls unterstützt."
msgid "learn more about Markdown"
msgstr "Mehr Informationen über Markdown"
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "Frage stellen"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
@@ -6574,26 +6534,25 @@ msgstr ""
"ganz schnell. Ihre Frage wird für die Dauer des Anmeldevorgangs im "
"Hintergrund gespeichert und geht nicht verloren."
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"<span class='strong big'>Ihre E-Mail-Adresse %(email)s wurde noch nicht "
-"bestätigt.</span> Um Beiträge veröffentlichen zu können, müssen Sie Ihre E-"
-"Mail-Adresse bestätigen. <a href='%(email_validation_faq_url)s'>Mehr infos "
-"hier</a>.<br>Sie können Ihren Beitrag speichern und die Bestätigung danach "
-"durchführen - Ihr Beitrag wird bis dahin gespeichert."
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Bitte einloggen, um Frage zu veröffentlichen"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Stellen Sie Ihre Frage"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6609,10 +6568,15 @@ msgid "about"
msgstr "Über uns"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr "ajuda"
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "Datenschutzrichtlinien"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "Feedback geben"
@@ -6633,17 +6597,11 @@ msgstr "Benutzer"
msgid "badges"
msgstr "Auszeichnungen"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "Tipps für Fragen"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "Stellen Sie nur Fragen, die für dieses Forum relevant sind."
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "Bitte erwähnen Sie in Ihrer Frage genügend Details."
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr ""
+"Bitte formulieren Sie Ihre Frage so, daß sie für dieses Forum relevant ist."
#: skins/default/templates/widgets/question_summary.html:12
#, fuzzy
@@ -6666,28 +6624,28 @@ msgid_plural "votes"
msgstr[0] "abstimmen/"
msgstr[1] "abstimmen/"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr "TOTES"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr "Unbeantwortete Fragen anzeigen"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr "SENSE RESPONDRE"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "Favoritenliste anzeigen"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr "SEQUIDES"
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "Bitte stellen Sie Ihre Frage!"
@@ -6701,24 +6659,27 @@ msgstr "reputació:"
msgid "badges:"
msgstr "Auszeichnungen"
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "Ausloggen"
+#: skins/default/templates/widgets/user_navigation.html:9
+#, fuzzy
+msgid "sign out"
+msgstr "ausloggen/"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "Einloggen"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "Bitte hier anmelden:"
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
#, fuzzy
msgid "settings"
msgstr "die Tag-Beschränkung entfernen"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "no"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr "Bronze"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr "hi ha hagut un error"
@@ -6736,7 +6697,8 @@ msgid "this field is required"
msgstr "Dieses Feld wird benötigt"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "Bitte einen Benutzernamen eingeben"
#: utils/forms.py:69
@@ -6772,8 +6734,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "Ihre E-Mail-Adresse <i>(wird nie veröffentlicht)</i>"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6789,17 +6751,13 @@ msgstr ""
"Diese E-Mail-Adresse ist bereits in Benutzung, bitte geben Sie eine andere "
"ein"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "Passwort"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "Ein Passwort wird benötigt"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "Passwort <i>(bitte neu eingeben)</i>"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6811,28 +6769,74 @@ msgstr ""
"Die beiden eingegebenen Passwörter stimmen nicht überein, bitte erneut "
"versuchen"
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "vor 2 Tagen"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "gestern"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] "vor %(hr)d Stunde"
msgstr[1] "vor %(hr)d Stunden"
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] "vor %(min)d Minute"
msgstr[1] "vor %(min)d Minuten"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+"<p>Per preguntar per correu electrònic:</p>\n"
+"<ul>\n"
+" <li>Escriviu l'assumpte com: [Etiqueta1; Etiqueta12] Títol de la "
+"pregunta</li>\n"
+" <li>En el cos del missatge escriviu els detalls de la vostre pregunta</"
+"li>\n"
+"</ul>\n"
+"<p>Les etiquetes poden esta formades per més d'una paraula. Les etiquetes "
+"estan separades per una coma o un punt i coma</p>\n"
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+"<p>S'ha produït un error publicant la vostre pregunta; contacteu amb "
+"l'administrador de %(site)s</p> "
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+"<p>Cal estar <a href=\"%(url)s\">registrat</a> per publicar preguntes s "
+"%(site)s a través del correu electrònic</p>"
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+"<p>La seva pregunta no s'ha publicat ja que el vostre compte d'usuari no té "
+"suficients privilegis</p>"
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6845,182 +6849,198 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+#, fuzzy
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr "Gastbenutzer können nicht abstimmen"
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "Gastbenutzer können nicht abstimmen"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "se li han acabat el vots per avui"
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Per avui li queden %(votes_left)s restants"
-#: views/commands.py:123
-#, fuzzy
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "Gastbenutzer können nicht abstimmen"
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "alguna cosa no funciona aqui ..."
-#: views/commands.py:213
+#: views/commands.py:229
#, fuzzy
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "Gastbenutzer können nicht abstimmen"
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr ""
"Ihre Abonnementeinstellungen wurden gespeichert, aber %(email)s muß noch "
"bestätigt werden. <a href='%(details_url)s'>Details hier</a>."
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "Die Häufigkeit der Benachrichtigungen wurde auf \"täglich\" gesetzt."
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:578
+#: views/commands.py:600
#, fuzzy
msgid "Please sign in to vote"
msgstr "Bitte hier anmelden:"
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Bitte hier anmelden:"
+
+#: views/meta.py:37
+#, python-format
+msgid "About %(site)s"
+msgstr "Sobre %(site)s"
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Forums-Feedback"
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Vielen Dank für Ihr Feedback!"
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr "Wir freuen uns auf Ihr Feedback! Gerne auch nächstes Mal :)"
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr "Datenschutzrichtlinien"
+
+#: views/readers.py:133
#, fuzzy, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s Frage"
msgstr[1] "%(q_num)s Fragen"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d %(badge_level)s insígnia"
-msgstr[1] "%(badge_count)d %(badge_level)s insígnies"
-
-#: views/readers.py:416
+#: views/readers.py:388
#, fuzzy
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr "Die Frage wurde als Favorit ausgewählt"
-#: views/users.py:212
+#: views/users.py:206
#, fuzzy
msgid "moderate user"
msgstr "benutzer-moderieren/"
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "Benutzerprofil"
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "Benutzerprofil-Übersicht"
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "Neueste Aktivitäten"
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "Profil - neueste Aktivitäten"
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "Profil - Reaktionen"
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "Abgegebene Bewertungen"
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "Punktestand des Benutzers"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr "reputació"
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "Profil - Punktestand des Benutzers"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "Fragen in der Favoritenliste des Benutzers"
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "Fragen in der Favoritenliste"
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "Veränderungen gespeichert"
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "E-Mail-Benachrichtigungen abgestellt"
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "E-Mail-Abonnements"
-#: views/writers.py:59
+#: views/writers.py:60
#, fuzzy
msgid "Sorry, anonymous users cannot upload files"
msgstr "Gastbenutzer können nicht abstimmen"
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "Erlaubte Dateitypen: '%(file_types)s'"
-#: views/writers.py:92
+#: views/writers.py:84
#, fuzzy, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "Die Maximalgröße beim Hochladen beträgt %s Kilobyte."
-#: views/writers.py:100
+#: views/writers.py:92
#, fuzzy
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
"Fehler beim Hochladen der Datei. Bitte nehmen Sie Kontakt mit dem "
"Administrator auf. %s"
-#: views/writers.py:192
-#, fuzzy
-msgid "Please log in to ask questions"
-msgstr "Sie können jederzeit gern Ihre eigene Frage stellen!"
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
#, fuzzy
msgid "Please log in to answer questions"
msgstr "Unbeantwortete Fragen anzeigen"
-#: views/writers.py:600
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -7029,12 +7049,12 @@ msgstr ""
"Sembla que heu sortit i no podeu posar comentaris. <a href=\"%(sign_in_url)s"
"\">Entreu</a>."
-#: views/writers.py:649
+#: views/writers.py:589
#, fuzzy
msgid "Sorry, anonymous users cannot edit comments"
msgstr "Gastbenutzer können nicht abstimmen"
-#: views/writers.py:658
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -7043,28 +7063,648 @@ msgstr ""
"Sembla que heu sortit i no podeu eliminar comentaris. <a href="
"\"%(sign_in_url)s\">Entreu</a>."
-#: views/writers.py:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "sembla que tenim algunes dificultats tècniques"
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "Diese Buchstaben dürfen in Tags vorkommen"
+
#, fuzzy
-#~ msgid "question content must be > 10 characters"
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "Diese E-Mail muß nicht mit Gravatar verknüpft werden."
+
+#, fuzzy
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Passwort ändern"
+
+#~ msgid "question_answered"
+#~ msgstr "Frage beantwortet"
+
+#~ msgid "question_commented"
+#~ msgstr "Frage kommentiert"
+
+#~ msgid "answer_commented"
+#~ msgstr "Antwort kommentiert"
+
+#~ msgid "answer_accepted"
+#~ msgstr "Antwort akzeptiert"
+
+#~ msgid "Incorrect username."
+#~ msgstr "Ungültiger Benutzername."
+
+#, fuzzy
+#~ 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>Hallo %(name)s,</p></p>Es gibt neues zu einer Frage:</p>"
+#~ msgstr[1] "<p>Hallo %(name)s,</p><p>Es gibt neues zu %(num)d Fragen:</p>"
+
+#, fuzzy
+#~ 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 ""
-#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#~ "Der Fragentext muß länger als 10 Buchstaben sein.\n"
-#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#~ "la pregunta ha de tenir més de 10 caràcters"
+#~ "Schauen Sie rein und entdecken Sie neue Fragen und Antworten. Empfehlen "
+#~ "Sie uns gern auch an Freunde und Bekannte weiter!"
+
+#, fuzzy
+#~ 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 ""
+#~ "Die Einstellung, mit der Sie am häufigsten benachrichtigt werden, ist "
+#~ "\"täglich\". Sollten Sie mehr als eine E-Mail pro Tag bekommen, "
+#~ "benachrichtigen Sie uns bitte."
+
+#, fuzzy
+#~ 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 ""
+#~ "Die Einstellung, mit der Sie am häufigsten benachrichtigt werden, ist "
+#~ "\"wöchentlich\". Sollten Sie mehr als eine E-Mail pro Woche bekommen, "
+#~ "benachrichtigen Sie uns bitte."
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr ""
+#~ "Aus technischen Gründen kann es manchmal vorkommen, daß Sie Links "
+#~ "empfangen, die Sie bereits gesehen haben. "
#, fuzzy
#~ msgid ""
-#~ "If you believe that this message was sent in mistake - \n"
-#~ "no further action is needed. Just ignore this email, we apologize\n"
-#~ "for any inconvenience."
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "<p>Sie können die Häufigkeit, mit der Sie Benachrichtigungen erhalten, "
+#~ "jederzeit <a href='%(link)s'>hier</a> einstellen oder sie gänzlich "
+#~ "abschalten.<br/>Falls Sie diese Nachricht irrtümlich erhalten haben, "
+#~ "informieren Sie uns bitte unter %(email)s.</p>"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr "Das Hochladen von Dateien benötigt %(min_rep)s Punkte oder mehr"
+
+#, fuzzy
+#~ msgid "blocked users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr "no es pot senyalar un missatge com ofensiu dues vegades"
+
+#, fuzzy
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr "s'han de tenir més de %(min_rep)s punts per senyalar spam"
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr "excedit %(max_flags_per_day)s"
+
+#, fuzzy
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] "s'han de tenir més d'%(min_rep)d punt per poder treure senyals"
+#~ msgstr[1] "s'han de tenir més de %(min_rep)d punts per poder treure senyals"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "Bewertung kann nicht mehr zurückgenommen werden"
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s hat die Frage bearbeitet"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr ""
+#~ "%(people)s Benutzer haben %(new_answer_count)s neue Antworten verfaßt"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s Benutzer haben die Frage kommentiert"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s Benutzer haben Kommentare zu Antworten verfaßt"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s Benutzer haben Kommentare zu einer Antwort verfaßt"
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Geben Sie Ihre E-Mail-Adresse in untenstehende "
+#~ "Box ein</span> falls Sie sie für Ihre Benachrichtigungs-E-Mails ändern "
+#~ "möchten.<br>Im Moment verwenden Sie <strong>%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Bitte geben Sie unten Ihre E-Mail-Adresse ein.</"
+#~ "span> Eine gültige E-Mail-Adresse wird für dieses Forum benötigt. Falls "
+#~ "Sie möchten, können Sie <strong>Benachrichtigungsmails</strong> zu Sie "
+#~ "besonders interessierenden Fragen, oder Neuzugängen abonnieren. Ihre E-"
+#~ "Mail-Adresse wird auch benutzt, um ein individuelles sogenanntes <a "
+#~ "href='%(gravatar_faq_url)s'><strong>Gravatar</strong></a>-Bild für Ihr "
+#~ "Konto anzuzeigen. E-Mail-Adressen werden niemals öffentlich angezeigt."
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Ihre neue E-Mail-Adresse:</strong> (wird<strong>nicht</strong> "
+#~ "öffentlich angezeigt; muß eine gültige Adresse sein)"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Eine E-Mail mit einem Bestätigungslink wurde "
+#~ "an %(email)s versandt.</span> Bitte <strong>klicken Sie auf den Link in "
+#~ "der E-Mail</strong> oder geben Sie ihn via Kopieren+Einfügen in Ihren "
+#~ "Internet-Browser ein. Die E-Mail-Überprüfung dient Ihrem und unserem "
+#~ "Schutz vor Spam. Falls Sie eine <strong>andere E-Mail-Adresse</strong> "
+#~ "verwenden möchten, können Sie sie <a "
+#~ "href='%(change_email_url)s'><strong>erneut ändern</strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Ihre E-Mail-Adresse %(email)s wurde nicht "
+#~ "geändert.</span> Falls Sie sie später ändern möchten, können Sie dieses "
+#~ "jederzeit in Ihrem Benutzerprofil oder im <a "
+#~ "href='%(change_email_url)s'><strong>vorigen Formular</strong></a> tun."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Ihre E-Mail-Adresse wurde auf %(email)s "
+#~ "verändert.</span> Sie erhalten alle eventuell abonnierten E-Mail-"
+#~ "Benachrichtigungen nun an diese Adresse."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Vielen Dank für die Bestätigung Ihrer E-Mail-"
+#~ "Adresse!</span> Sie können jetzt <strong>Fragen stellen</strong> und "
+#~ "<strong>beantworten</strong>. Sie können bei interessanten Fragen auch "
+#~ "<strong>eine E-Mail-Benachrichtigung abonnieren</strong>, die Sie einmal "
+#~ "täglich oder seltener über neue Entwicklungen wie Antworten und "
+#~ "Kommentare informiert."
+
+#~ msgid "email key not sent"
+#~ msgstr "Bestätigungs-E-Mail nicht versandt"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Ihre momentane E-Mail-Adresse %(email)s wurde "
+#~ "bereits bestätigt</span>. Es wurde keine neue Bestätigungsmail versandt. "
+#~ "Sie können Ihre E-Mail-Adresse bei Bedarf <a "
+#~ "href='%(change_link)s'>ändern</a>."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Sie sind zum ersten Mal mit Ihrem OpenID-"
+#~ "Zugang von %(provider)s eingeloggt.</span> Bitte geben Sie einen "
+#~ "<strong>Benutzernamen</strong> ein und hinterlegen Sie Ihre <strong>E-"
+#~ "Mail-Adresse</strong>. Die E-Mail-Adresse ermöglicht "
+#~ "<strong>Benachrichtigungen bei besonders interessanten Fragen</strong> "
+#~ "und wird als Grundlage für Ihr Individuelles Benutzerbild, den <a "
+#~ "href='%(gravatar_faq_url)s'><strong>Gravatar</strong></a>, benutzt.</p>"
+
+#, fuzzy
+#~ 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'>Der Benutzername %(username)s ist leider "
+#~ "nicht mehr frei.</span></p><p> Eine gültige E-Mail-Adresse ist ebenfalls "
+#~ "erforderlich - an sie senden wir (optionale) Benachrichtigungsmails, und "
+#~ "mit ihr zeigen wir Ihr Benutzerbild (Gravatar) an. E-Mail-Adressen werden "
+#~ "nicht öffentlich angezeigt und auch nicht an Dritte weitergegeben.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Sie sind zum ersten Mal mit Ihrem OpenID-"
+#~ "Zugang von %(provider)s eingeloggt.</span> Sie können einen "
+#~ "<strong>Benutzernamen</strong> eingeben oder Ihren Benutzernamen bei "
+#~ "%(provider)s verwenden. Bitte hinterlegen Sie auch Ihre <strong>E-Mail-"
+#~ "Adresse</strong>. Die E-Mail-Adresse ermöglicht "
+#~ "<strong>Benachrichtigungen bei besonders interessanten Fragen</strong> "
+#~ "und wird als Grundlage für Ihr Individuelles Benutzerbild, den <a "
+#~ "href='%(gravatar_faq_url)s'><strong>Gravatar</strong></a>, benutzt.</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Sie sind hier zum ersten Mal mit Ihrem "
+#~ "Facebook-Login.</span> Bitte legen Sie einen <strong>Benutzernamen</"
+#~ "strong> fest und hinterlegen Sie Ihre <strong>E-Mail-Adresse</strong>. "
+#~ "Die E-Mail-Adresse ermöglicht <strong>Benachrichtigungen bei besonders "
+#~ "interessanten Fragen</strong> und wird als Grundlage für Ihr "
+#~ "Individuelles Benutzerbild, den <a "
+#~ "href='%(gravatar_faq_url)s'><strong>Gravatar</strong></a>, benutzt.</p>"
+
+#~ msgid "This account already exists, please use another."
+#~ msgstr ""
+#~ "Dieser Benutzername existiert leider bereits, bitte wählen Sie einen "
+#~ "anderen."
+
+#~ msgid "Screen name label"
+#~ msgstr "<strong>Benutzername</strong> (<i>wird öffentlich angezeigt</i>)"
+
+#~ msgid "Email address label"
+#~ msgstr ""
+#~ "<strong>E-Mail-Adresse</strong> (<i>wird <strong>nicht</strong> "
+#~ "öffentlich angezeigt; muß gültig sein</i>)"
+
+#~ msgid "receive updates motivational blurb"
+#~ msgstr ""
+#~ "<strong>Benachrichtigungen per E-Mail abonnieren</strong> Das Abonnieren "
+#~ "von E-Mail-Benachrichtigungen ist freiwillig. <br/>Das Forum versenden "
+#~ "bis zu <strong>einer Benachrichtigung pro Woche</strong> - nur wenn es "
+#~ "auch wirklich Neues gibt.<br/>Sie können die Benachrichtigungshäufigkeit "
+#~ "jederzeit in Ihrem Benutzerprofil anpassen."
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr ""
+#~ "Das Tag-Filterwerkzeug finden Sie nach dem Einloggen in der rechten "
+#~ "Spalte."
+
+#~ msgid "create account"
+#~ msgstr "Zugang anlegen"
+
+#~ 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 ""
#~ "Falls Sie diese Nachricht irrtümlich erhalten haben, brauchen Sie nichts "
#~ "zu unternehmen. Bitte ignorieren Sie diese E-Mail einfach - wir "
#~ "entschuldigen uns für die Unannehmlichkeiten."
+#~ msgid "Login"
+#~ msgstr "Login"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "Warum OpenID verwenden?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "Mit OpenID müssen Sie keinen neuen Account anlegen."
+
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "Sie können sich ohne Bedenken mit dem selben OpenID-Zugang auf unbegrenzt "
+#~ "vielen Webseiten einloggen."
+
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "Es gibt mehr als 160 Millionen OpenID-Zugänge und mehr als 10.000 Seiten, "
+#~ "die OpenID akzeptieren."
+
+#~ msgid "openid is supported open standard"
+#~ msgstr ""
+#~ "OpenID basiert auf einem international anerkannten Standard und wird von "
+#~ "zahlreichen großen Firmen unterstützt."
+
+#~ msgid "Find out more"
+#~ msgstr "Mehr Informationen"
+
+#~ msgid "Get OpenID"
+#~ msgstr "Einen OpenID-Zugang anlegen"
+
+#~ msgid "Traditional signup info"
+#~ msgstr ""
+#~ "<span class='strong big'>Falls Sie möchten, können Sie auch einen "
+#~ "Benutzernamen und ein Passwort hier im Forum anmelden. Wir unterstützen "
+#~ "aber auch <strong>OpenID</strong>, eine Technik, mit der Sie sich nur "
+#~ "einmal z.B. bei Ihrem Internet-Provider registrieren müssen. Mit der bei "
+#~ "Ihrem Provider angelegten OpenID können Sie sich dann hier einloggen. "
+#~ "Wenn Sie z.B. einen Zugang bei Google haben, haben Sie bereits auch einen "
+#~ "OpenID-Zugang."
+
+#~ msgid "Create Account"
+#~ msgstr "Zugang anlegen"
+
+#~ msgid "answer permanent link"
+#~ msgstr "Link zur Antwort"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "Alle Tags zeigen"
+
+#, fuzzy
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "Der Fragesteller hat diese Antwort als die korrekte markiert"
+
+#~ msgid "Related tags"
+#~ msgstr "Tags"
+
+#~ msgid "Ask a question"
+#~ msgstr "Frage stellen"
+
+#~ msgid "Badges summary"
+#~ msgstr "Zusammenfassung Auszeichnungen"
+
+#~ msgid "gold badge description"
+#~ msgstr ""
+#~ "Goldene Auszeichnungen erreicht man mit regelmäßiger, "
+#~ "überdurchschnittlicher Beteiligung."
+
+#~ msgid "silver badge description"
+#~ msgstr ""
+#~ "Silberne Auszeichnungen erzielt man durch regelmäßige, geduldige "
+#~ "Teilnahme am Forum."
+
+#~ msgid "bronze badge description"
+#~ msgstr "Aktive Forumsteilnehmer werden in Bronze ausgezeichnet."
+
+#~ 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 ""
+#~ "Wir sind ein Forum zum Stellen und Beantworten von Fragen - <strong>kein "
+#~ "Diskussionsforum</strong>. Bitte verzichten Sie in Ihren Antworten auf "
+#~ "Diskussionen. Kurze Gespräche, Kritik und Klärungen sind über die "
+#~ "Kommentarfunktion möglich. "
+
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "Wenn eine Frage oder Antwort positiv bewertet wird, erhält der Autor "
+#~ "Punkte. Diese Punkte sind ein ungefähres Abbild von dem Grad, in dem dem "
+#~ "Benutzer von der Gemeinschaft vertraut wird. Mit wachsendem Punktestand "
+#~ "werden immer mehr Möglichkeiten freigeschaltet."
+
+#~ msgid "use tags"
+#~ msgstr "Tags benutzen"
+
+#~ msgid "what is gravatar"
+#~ msgstr "Wie verändert man sein Profilbild (Avatar) und was ist Gravatar?"
+
+#~ msgid "gravatar faq info"
+#~ msgstr ""
+#~ "<p>Das Bild, das überall im Forum neben dem Benutzernamen angezeigt wird, "
+#~ "heißt <strong>Gravatar</strong> (\"<strong>G</strong>lobally <strong>R</"
+#~ "strong>ecognized <strong>Avatar</strong>).</p><p>So funktioniert es: Ein "
+#~ "<strong>kryptographischer Schlüssel</strong> - ein nicht knackbarer code "
+#~ "- wird aus Ihrer E-Mail-Adresse berechnet. Sie laden Ihr gewünschtes "
+#~ "Profilbild auf der Website <a href='http://gravatar.com'><strong>gravatar."
+#~ "com</strong></a> hoch.</p><p>Alle Foren, Blogs und andere Webseiten, die "
+#~ "Gravatar nutzen, können so Ihr Profilbild darstellen, ohne daß Ihre E-"
+#~ "Mail-Adresse öffentlich wird.</p><p>Um ein Profilbild hochzuladen, "
+#~ "<strong>registrieren Sie sich</strong> auf <a href='http://gravatar."
+#~ "com'><strong>gravatar.com</strong></a> mit der selben E-Mail-Adresse, die "
+#~ "Sie hier bei uns angegeben haben und folgen Sie den dort angegebenen "
+#~ "Schritten. Laden Sie kein Profilbild hoch, wird ein neutrales Standard-"
+#~ "Symbol angezeigt.</p>"
+
+#, fuzzy
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr ""
+#~ "Ich halte diesen Beitrag für hilfreich (Zum Abbrechen erneut klicken)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr ""
+#~ "Ich halte diese Antwort für hilfreich (zum Abbrechen erneut klicken)"
+
+#, fuzzy
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "Ich halte nichts von diesem Beitrag (Zum Abbrechen erneut klicken)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr ""
+#~ "Ich halte diese Antwort für nicht hilfreich (zum Abbrechen erneut klicken)"
+
+#, fuzzy
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] "<strong>1</strong> weiterer Kommentar"
+#~ msgstr[1] "<strong>%(counter)s</strong> weitere Kommentare"
+
+#~ msgid "posts per page"
+#~ msgstr "Beiträge pro Seite"
+
+#~ msgid "Change tags"
+#~ msgstr "Tags ändern"
+
+#~ msgid "reputation"
+#~ msgstr "Punktestand"
+
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ " %(counter)s Answer\n"
+#~ " "
+#~ msgid_plural ""
+#~ "\n"
+#~ " %(counter)s Answers\n"
+#~ " "
+#~ msgstr[0] ""
+#~ "\n"
+#~ "Eine Antwort:"
+#~ msgstr[1] ""
+#~ "\n"
+#~ "%(counter)s Antworten:"
+
+#~ msgid "oldest answers"
+#~ msgstr "älteste"
+
+#~ msgid "newest answers"
+#~ msgstr "Neueste Antworten"
+
+#~ msgid "popular answers"
+#~ msgstr "Höchstbewertet"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr ""
+#~ "<span class='strong big'>Beginnen Sie Ihre Antwort als anonymer Gast</"
+#~ "span> - Ihre Antwort wird gespeichert, während Sie sich danach einloggen "
+#~ "oder einen neuen Zugang anlegen. Bitte versuchen Sie, eine "
+#~ "<strong>sachliche Antwort mit Substanz</strong> zu verfassen. Für "
+#~ "Rückfragen oder Klarstellungen nutzen Sie bitte die Kommentarfunktion "
+#~ "unter der Frage. Nachdem Sie sich angemeldet und/oder eingeloggt haben, "
+#~ "können Sie auch über die Qualität der Frage abstimmen, vergessen Sie das "
+#~ "nicht!"
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr ""
+#~ "<span class='big strong'>Die eigene Frage zu beantworten ist ausdrücklich "
+#~ "erlaubt</span>, aber es muß eine echte <strong>Antwort</strong> sein! "
+#~ "Vergessen Sie nicht, daß Sie Ihre ursprüngliche Frage <strong>jederzeit "
+#~ "verändern oder bei Bedarf auch wieder löschen können</strong>. Bitte "
+#~ "verwenden Sie die <strong>Kommentarfunktion</strong> für Diskussionen "
+#~ "und Rückfragen, und bitte vergessen Sie nicht, die eingehenden Antworten "
+#~ "mit Ihrer Stimme zu bewerten!"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr ""
+#~ "Bitte verfassen Sie eine <strong>sachliche Antwort mit Substanz</strong>. "
+#~ "Um einen <strong>Kommentar</strong> zu verfassen, nutzen Sie bitte die "
+#~ "Kommentarfunktion unter jeder Frage und Antwort. Sie können Ihre Antwort "
+#~ "jederzeit <strong>bearbeiten</strong> - es ist normalerweise nicht nötig, "
+#~ "eine Frage doppelt zu beantworten. Vergessen Sie auch nicht, über die "
+#~ "Frage und andere Antworten <strong>abzustimmen</strong> - dies hilft, die "
+#~ "besten Fragen und Antworten herauszufinden!"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr ""
+#~ "Bitte loggen Sie sich ein oder registrieren Sie sich, um die Antwort "
+#~ "endgültig zu speichern."
+
+#~ msgid "Answer the question"
+#~ msgstr "Frage beantworten"
+
+#~ msgid "question asked"
+#~ msgstr "Gefragt"
+
+#~ msgid "question was seen"
+#~ msgstr "Frage betrachtet:"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Benachrichtigung bei neuen Antworten</strong> einmal täglich per "
+#~ "E-Mail"
+
+#, fuzzy
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Benachrichtigung bei neuen Antworten</strong> einmal wöchentlich "
+#~ "per E-Mail"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr ""
+#~ "(Sie können die Frequenz der Benachrichtigungen jederzeit in Ihrem "
+#~ "<strong><a href='%(profile_url)s?sort=email_subscriptions'>Profil</a></"
+#~ "strong> ändern)"
+
+#~ msgid "email subscription settings info"
+#~ msgstr ""
+#~ "<span class='big strong'>Häufigkeit von E-Mail-Benachrichtigungen "
+#~ "einstellen</span> Abonnieren Sie Benachrichtigungen über Neuigkeiten in "
+#~ "Fragen, die Sie interessieren. Falls Sie keine E-Mails erhalten möchten - "
+#~ "wählen Sie \"Keine E-Mail\".<br/>Benachrichtigungen werden nur versandt, "
+#~ "wenn es neues in der betreffenden Frage gibt."
+
+#~ msgid "Stop sending email"
+#~ msgstr "Keine E-Mails mehr senden"
+
+#~ msgid "user website"
+#~ msgstr "Website"
+
+#, fuzzy
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] "<span class=\"count\">1</span> Antwort"
+#~ msgstr[1] "<span class=\"count\">%(counter)s</span> Antworten"
+
+#~ msgid "reputation history"
+#~ msgstr "Punkte-Protokoll"
+
+#~ msgid "recent activity"
+#~ msgstr "Jüngste Aktivitäten"
+
+#~ msgid "casted votes"
+#~ msgstr "abgegebene Stimmen"
+
+#~ msgid "answer tips"
+#~ msgstr "Tipps"
+
+#~ msgid "please try to provide details"
+#~ msgstr "Bitte versuchen Sie, Details einzubringen."
+
+#~ msgid "ask a question"
+#~ msgstr "Frage stellen"
+
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ " see %(email_validation_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<span class='strong big'>Ihre E-Mail-Adresse %(email)s wurde noch nicht "
+#~ "bestätigt.</span> Um Beiträge veröffentlichen zu können, müssen Sie Ihre "
+#~ "E-Mail-Adresse bestätigen. <a href='%(email_validation_faq_url)s'>Mehr "
+#~ "infos hier</a>.<br>Sie können Ihren Beitrag speichern und die Bestätigung "
+#~ "danach durchführen - Ihr Beitrag wird bis dahin gespeichert."
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Bitte einloggen, um Frage zu veröffentlichen"
+
+#~ msgid "question tips"
+#~ msgstr "Tipps für Fragen"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "Stellen Sie nur Fragen, die für dieses Forum relevant sind."
+
+#~ msgid "logout"
+#~ msgstr "Ausloggen"
+
+#~ msgid "login"
+#~ msgstr "Einloggen"
+
+#~ msgid "no items in counter"
+#~ msgstr "no"
+
+#~ msgid "your email address"
+#~ msgstr "Ihre E-Mail-Adresse <i>(wird nie veröffentlicht)</i>"
+
+#~ msgid "choose password"
+#~ msgstr "Passwort"
+
+#~ msgid "retype password"
+#~ msgstr "Passwort <i>(bitte neu eingeben)</i>"
+
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d %(badge_level)s insígnia"
+#~ msgstr[1] "%(badge_count)d %(badge_level)s insígnies"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "Punktestand des Benutzers"
+
+#, fuzzy
+#~ msgid "Please log in to ask questions"
+#~ msgstr "Sie können jederzeit gern Ihre eigene Frage stellen!"
+
+#, fuzzy
+#~ msgid "question content must be > 10 characters"
+#~ msgstr ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "Der Fragentext muß länger als 10 Buchstaben sein.\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "la pregunta ha de tenir més de 10 caràcters"
+
#~ msgid "(please enter a valid email)"
#~ msgstr "(entrar una adreça vàlida de correu electrònic)"
@@ -7106,14 +7746,6 @@ msgstr "sembla que tenim algunes dificultats tècniques"
#~ msgstr "Tags"
#, fuzzy
-#~ msgid "questions"
-#~ msgstr ""
-#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#~ "Fragen\n"
-#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#~ "preguntes"
-
-#, fuzzy
#~ msgid "search"
#~ msgstr ""
#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
@@ -8336,58 +8968,6 @@ msgstr "sembla que tenim algunes dificultats tècniques"
#~ "\n"
#~ "<div class=\"questions-count\">%(q_num)s</div><p>questions<p>"
-#~ msgid "Common left sidebar"
-#~ msgstr "Barra lateral esquerra comuna"
-
-#~ msgid "Enable left sidebar"
-#~ msgstr "Activar barra lateral esquerra"
-
-#~ msgid "Allow users change own email addresses"
-#~ msgstr "Permetre als usuaris canviar la seva adreça de correu"
-
-#~ msgid "Default avatar for users"
-#~ msgstr "Avatar d'usuari per defecte"
-
-#~ msgid "Welcome %(username)s,"
-#~ msgstr "Benvingut-uda %(username)s"
-
-#~ msgid "Welcome,"
-#~ msgstr "Benvingut"
-
-#~ msgid ""
-#~ "\n"
-#~ " %(counter)s Answer\n"
-#~ " "
-#~ msgid_plural ""
-#~ "\n"
-#~ " %(counter)s Answers\n"
-#~ " "
-#~ msgstr[0] ""
-#~ "\n"
-#~ " %(counter)s Resposta:\n"
-#~ " "
-#~ msgstr[1] ""
-#~ "\n"
-#~ " %(counter)s Respostes:\n"
-#~ " "
-
-#~ msgid "Sort by »"
-#~ msgstr "Ordenar per »"
-
-#~ msgid "(cannot be changed)"
-#~ msgstr "(no es pot canviar)"
-
-#~ msgid "Answer"
-#~ msgid_plural "Answers"
-#~ msgstr[0] "Resposta"
-#~ msgstr[1] "Respostes"
-
-#~ msgid "help"
-#~ msgstr "ajuda"
-
-#~ msgid "About %(site)s"
-#~ msgstr "Sobre %(site)s"
-
#~ msgid ""
#~ "\n"
#~ " %(counter)s Answer\n"
diff --git a/askbot/locale/de/LC_MESSAGES/djangojs.po b/askbot/locale/de/LC_MESSAGES/djangojs.po
index 0cc150c5..c6e5cc45 100644
--- a/askbot/locale/de/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/de/LC_MESSAGES/djangojs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:57-0500\n"
"PO-Revision-Date: 2011-09-28 04:28-0800\n"
"Last-Translator: Rosandra Cuello <rosandra.cuello@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,146 +75,77 @@ msgstr ""
msgid "loading..."
msgstr "Lade..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "Tags dürfen nicht leer sein"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "Inhalt darf nicht leer sein"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "Bitte mindestens %s Zeichen eingeben"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "Bitte Titel eingeben"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "Bitte mindestens %s Zeichen eingeben"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "nicht genügend Rechte"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "Eigene Antworten können nicht als die korrekte akzeptiert werden"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "Bitte einloggen"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "Gastbenutzer können nicht abstimmen "
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr "Bitte beleidigenden/regelwidrigen Beitrag bestätigen"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr "Bitte beleidigenden/regelwidrigen Beitrag bestätigen"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "Gastbenutzer können Beiträge nicht melden"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "Löschen bestätigen"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "Gastbenutzer können Beiträge nicht löschen oder wiederherstellen"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "Beitrag wiederhergestellt"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "Beitrag gelöscht"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "wiederherstellen"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "löschen"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "OK"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "%s characters left"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "%s characters left"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "Diesen Kommentar löschen"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "Löschen des Kommentars bestätigen"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -228,115 +159,140 @@ msgid_plural "Delete these notifications?"
msgstr[0] ""
msgstr[1] ""
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "Diesen Kommentar löschen"
+msgstr[1] "Diesen Kommentar löschen"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "Diesen Kommentar löschen"
+msgstr[1] "Diesen Kommentar löschen"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "Fett"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "Kursiv"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "Link"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "Zitat"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "Vorformatierter Text"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "Bild"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "Nummerierte Liste"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "Liste"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "Titel"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "horizontaler Balken"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "Rückgängig"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "Wiederholen"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
"Bild-URL eingeben, zum Beispiel <br />http://www.ihredomain.de/bildname.jpg"
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr "URL eingeben, zum Beispiel <br />http://www.askbot.org/ </p>"
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
+#~ msgid "tags cannot be empty"
+#~ msgstr "Tags dürfen nicht leer sein"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
+#~ msgid "content cannot be empty"
+#~ msgstr "Inhalt darf nicht leer sein"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
+#~ msgid "%s content minchars"
+#~ msgstr "Bitte mindestens %s Zeichen eingeben"
+
+#~ msgid "please enter title"
+#~ msgstr "Bitte Titel eingeben"
+
+#~ msgid "%s title minchars"
+#~ msgstr "Bitte mindestens %s Zeichen eingeben"
+
+#~ msgid "undelete"
+#~ msgstr "wiederherstellen"
+
+#~ msgid "delete"
+#~ msgstr "löschen"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "%s characters left"
+
+#~ msgid "%s characters left"
+#~ msgstr "%s characters left"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "Löschen des Kommentars bestätigen"
diff --git a/askbot/locale/el/LC_MESSAGES/django.po b/askbot/locale/el/LC_MESSAGES/django.po
index 3cf1d049..6783c087 100644
--- a/askbot/locale/el/LC_MESSAGES/django.po
+++ b/askbot/locale/el/LC_MESSAGES/django.po
@@ -4,9 +4,9 @@
# Evgeny Fadeev <evgeny.fadeev@gmail.com>, 2009.
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:53-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21,15 +21,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr ""
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr ""
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr ""
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr ""
@@ -56,24 +56,33 @@ msgstr ""
msgid "please enter a descriptive title for your question"
msgstr ""
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] ""
msgstr[1] ""
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr ""
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr ""
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -84,356 +93,376 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr ""
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] ""
msgstr[1] ""
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:227
+#: forms.py:249
#, 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] ""
msgstr[1] ""
-#: forms.py:235
-msgid "use-these-chars-in-tags"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
msgstr ""
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr ""
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
msgstr ""
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr ""
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr ""
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr ""
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr ""
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr ""
-#: forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr ""
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr ""
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr ""
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr ""
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr ""
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr ""
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr ""
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr ""
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr ""
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr ""
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr ""
-#: forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr ""
-#: forms.py:580
+#: forms.py:531
msgid "Email:"
msgstr ""
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr ""
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr ""
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr ""
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr ""
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr ""
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr ""
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr ""
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr ""
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr ""
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr ""
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr ""
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr ""
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr ""
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr ""
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr ""
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr ""
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr ""
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr ""
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr ""
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr ""
-#: forms.py:1157
-msgid "please choose one of the options above"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
msgstr ""
-#: urls.py:52
+#: urls.py:41
msgid "about/"
msgstr ""
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr ""
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr ""
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr ""
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr ""
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr ""
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+msgid "questions"
+msgstr ""
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr ""
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr ""
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr ""
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr ""
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr ""
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr ""
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr ""
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr ""
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr ""
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr ""
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr ""
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr ""
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr ""
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr ""
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr ""
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr ""
@@ -561,151 +590,173 @@ msgid ""
msgstr ""
#: conf/email.py:38
+msgid "Enable email alerts"
+msgstr ""
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr ""
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr ""
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr ""
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr ""
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr ""
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr ""
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr ""
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr ""
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+msgid "Enable posting answers and comments by email"
+msgstr ""
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -736,15 +787,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -752,11 +803,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -764,70 +815,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr ""
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -866,11 +901,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -926,107 +963,162 @@ msgid "Minimum length of answer body (number of characters)"
msgstr ""
#: conf/forum_data_rules.py:126
+msgid "Are tags required?"
+msgstr ""
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr ""
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr ""
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr ""
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+msgid "Common left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:20
+msgid "Enable left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1100,16 +1192,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1273,6 +1365,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1470,27 +1566,27 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr ""
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1615,21 +1711,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1637,40 +1733,40 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr ""
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1682,11 +1778,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1695,21 +1791,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1718,21 +1814,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1741,19 +1837,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1764,19 +1860,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1841,38 +1937,64 @@ msgstr ""
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
msgid "User settings"
msgstr ""
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+msgid "Allow users change own email addresses"
+msgstr ""
+
+#: conf/user_settings.py:41
msgid "Allow account recovery by email"
msgstr ""
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+msgid "Default avatar for users"
+msgstr ""
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -1979,326 +2101,336 @@ msgstr ""
msgid "too localized"
msgstr ""
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr ""
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr ""
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr ""
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr ""
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr ""
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr ""
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr ""
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr ""
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr ""
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr ""
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr ""
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr ""
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr ""
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr ""
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr ""
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr ""
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr ""
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr ""
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr ""
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr ""
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr ""
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+msgid "received badge"
msgstr ""
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr ""
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr ""
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr ""
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr ""
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr ""
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr ""
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr ""
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr ""
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr ""
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr ""
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr ""
-#: const/__init__.py:142
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr ""
-#: const/__init__.py:146
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr ""
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr ""
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr ""
-
-#: const/__init__.py:200
-msgid "question_commented"
+#: const/__init__.py:202
+msgid "answered question"
msgstr ""
-#: const/__init__.py:201
-msgid "answer_commented"
+#: const/__init__.py:205
+msgid "accepted answer"
msgstr ""
-#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr ""
-
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr ""
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr ""
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr ""
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr ""
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr ""
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr ""
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr ""
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr ""
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr ""
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr ""
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr ""
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr ""
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
msgid "wavatar"
msgstr ""
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr ""
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr ""
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr ""
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr ""
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr ""
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr ""
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr ""
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr ""
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr ""
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr ""
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr ""
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr ""
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr ""
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr ""
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr ""
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr ""
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr ""
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr ""
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr ""
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr ""
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr ""
@@ -2347,11 +2479,11 @@ msgid "Your user name (<i>required</i>)"
msgstr ""
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
+msgid "sorry, there is no such user name"
msgstr ""
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr ""
@@ -2389,7 +2521,7 @@ msgid "%(site)s user name and password"
msgstr ""
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2471,76 +2603,76 @@ msgstr ""
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr ""
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr ""
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr ""
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2548,28 +2680,28 @@ msgstr ""
msgid "Site"
msgstr ""
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr ""
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr ""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr ""
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr ""
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr ""
@@ -2585,7 +2717,7 @@ msgstr ""
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr ""
@@ -2645,112 +2777,52 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr ""
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
msgstr[1] ""
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
msgstr[1] ""
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr ""
-#: 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 ""
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2762,83 +2834,74 @@ msgstr[1] ""
msgid "Please log in to use %s"
msgstr ""
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr ""
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+msgid "Sorry, you cannot vote for your own posts"
msgstr ""
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ""
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ""
-#: models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr ""
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr ""
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr ""
-
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2849,56 +2912,56 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:510
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -2908,266 +2971,269 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr ""
-
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
+#: models/__init__.py:783
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-#: models/__init__.py:768
+#: models/__init__.py:794
#, python-format
-msgid "need > %(min_rep)s points to flag spam"
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
msgstr ""
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
-msgid "blocked users cannot remove flags"
+#: models/__init__.py:833
+msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
-#: models/__init__.py:805
-msgid "suspended users cannot remove flags"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
msgstr ""
-#: models/__init__.py:809
+#: models/__init__.py:843
#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr ""
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr ""
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr ""
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr ""
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr ""
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr ""
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr ""
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3425,154 +3491,134 @@ msgstr ""
msgid "Created a tag used by %(num)s questions"
msgstr ""
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr ""
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr ""
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr ""
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr ""
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr ""
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr ""
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
+#: models/reply_by_email.py:71
+msgid "edited by email"
msgstr ""
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr ""
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr ""
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr ""
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr ""
-
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr ""
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr ""
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr ""
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr ""
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr ""
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr ""
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr ""
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr ""
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr ""
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr ""
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr ""
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+msgid "Change Email"
msgstr ""
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3581,27 +3627,38 @@ msgstr ""
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3609,112 +3666,109 @@ msgstr ""
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
+#: skins/common/templates/authopenid/changeemail.html:102
+msgid "Validation email not sent"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
msgid "Registration"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:27
-#, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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 ""
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
+#: skins/common/templates/authopenid/complete.html:23
+msgid "User registration"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
msgstr ""
#: skins/common/templates/authopenid/confirm_email.txt:1
@@ -3741,7 +3795,7 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:13
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:1
@@ -3758,8 +3812,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -3799,9 +3853,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -3835,120 +3889,88 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
#: skins/common/templates/authopenid/signin.html:93
+msgid "Please, sign in"
+msgstr ""
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr ""
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr ""
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
msgstr ""
@@ -3962,24 +3984,29 @@ msgid "Create login name and password"
msgstr ""
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr ""
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr ""
@@ -4036,64 +4063,65 @@ msgstr ""
msgid "Delete These"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
+#: skins/common/templates/question/answer_controls.html:2
+msgid "swap with question"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
-msgid "remove all flags"
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
-msgid ""
-"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
+#: skins/common/templates/question/answer_controls.html:19
+msgid "remove offensive flag"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
-msgid "flag offensive"
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+msgid "remove flag"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-msgid "remove flag"
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
+msgid ""
+"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
+msgid "flag offensive"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:50
-msgid "swap with question"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
msgstr ""
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
-msgid "mark this answer as correct (click again to undo)"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
msgstr ""
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
+#: skins/common/templates/question/answer_vote_buttons.html:8
+msgid "mark this answer as correct (click again to undo)"
msgstr ""
#: skins/common/templates/question/closed_question_info.html:2
@@ -4109,58 +4137,65 @@ msgid "close date %(closed_at)s"
msgstr ""
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr ""
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr ""
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr ""
+
+#: skins/common/templates/widgets/edit_post.html:22
+msgid ", one of these is required"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+msgid "tags:"
+msgstr ""
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr ""
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr ""
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
msgid "add"
msgstr ""
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr ""
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr ""
@@ -4210,7 +4245,7 @@ msgid "back to previous page"
msgstr ""
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr ""
@@ -4239,11 +4274,6 @@ msgstr ""
msgid "see tags"
msgstr ""
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4273,17 +4303,19 @@ msgstr ""
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr ""
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+msgid "Ask Your Question"
msgstr ""
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr ""
@@ -4298,8 +4330,8 @@ msgid "Badge \"%(name)s\""
msgstr ""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, python-format
msgid "%(description)s"
msgstr ""
@@ -4310,11 +4342,7 @@ msgid_plural "users received this badge:"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr ""
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr ""
@@ -4326,39 +4354,41 @@ msgstr ""
#, 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"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr ""
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr ""
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr ""
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr ""
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr ""
@@ -4375,11 +4405,10 @@ msgstr ""
msgid "OK to close"
msgstr ""
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4399,12 +4428,12 @@ msgstr ""
#: skins/default/templates/faq_static.html:8
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+msgid "What kinds of questions should be avoided?"
msgstr ""
#: skins/default/templates/faq_static.html:11
@@ -4419,9 +4448,10 @@ msgstr ""
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
#: skins/default/templates/faq_static.html:15
@@ -4438,16 +4468,20 @@ msgstr ""
#: skins/default/templates/faq_static.html:18
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+msgid "How does karma system work?"
msgstr ""
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
msgstr ""
#: skins/default/templates/faq_static.html:22
@@ -4468,93 +4502,102 @@ msgstr ""
msgid "upvote"
msgstr ""
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr ""
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr ""
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr ""
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
msgid " accept own answer to own questions"
msgstr ""
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr ""
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr ""
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr ""
-#: skins/default/templates/faq_static.html:67
-msgid "\"edit any answer"
+#: skins/default/templates/faq_static.html:61
+msgid "edit any answer"
msgstr ""
-#: skins/default/templates/faq_static.html:71
-msgid "\"delete any comment"
+#: skins/default/templates/faq_static.html:65
+msgid "delete any comment"
msgstr ""
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr ""
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
msgstr ""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr ""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr ""
-#: skins/default/templates/faq_static.html:85
+#: skins/default/templates/faq_static.html:80
#, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
#: skins/default/templates/feedback.html:3
@@ -4608,6 +4651,68 @@ msgid ""
"Hello, this is a %(site_title)s forum feedback message.\n"
msgstr ""
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, python-format
+msgid "Welcome %(username)s,"
+msgstr ""
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -4706,174 +4811,155 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr ""
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr ""
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-msgid "i like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr ""
-#: skins/default/templates/macros.html:43
-msgid "i dont like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
msgid "anonymous user"
msgstr ""
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr ""
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr ""
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr ""
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr ""
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr ""
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr ""
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr ""
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/default/templates/macros.html:310
-#, 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/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr ""
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr ""
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr ""
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr ""
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
#, python-format
-msgid "page number %(num)s"
+msgid "page %(num)s"
msgstr ""
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr ""
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr ""
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr ""
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -4882,9 +4968,31 @@ msgstr ""
msgid "Questions"
msgstr ""
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
+#: skins/default/templates/question.html:110
+msgid "post a comment / <strong>some</strong> more"
+msgstr ""
+
+#: skins/default/templates/question.html:113
+msgid "see <strong>some</strong> more"
+msgstr ""
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+msgid "post a comment"
+msgstr ""
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr ""
+
+#: skins/default/templates/question.html:140
+msgid "Post Your Answer"
+msgstr ""
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+msgid "Login/Signup to Post"
msgstr ""
#: skins/default/templates/question_edit.html:4
@@ -4894,7 +5002,7 @@ msgstr ""
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
+msgid "Retag question"
msgstr ""
#: skins/default/templates/question_retag.html:21
@@ -4948,6 +5056,13 @@ msgstr ""
msgid "Reopen this question"
msgstr ""
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -4975,17 +5090,17 @@ msgstr ""
msgid "Subscribe"
msgstr ""
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr ""
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr ""
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
msgstr ""
@@ -5005,7 +5120,7 @@ msgstr ""
msgid "by popularity"
msgstr ""
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr ""
@@ -5019,7 +5134,9 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
msgstr ""
#: skins/default/templates/users.html:20
@@ -5051,7 +5168,7 @@ msgstr ""
msgid "Nothing found."
msgstr ""
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5067,39 +5184,39 @@ msgstr ""
msgid "Tagged"
msgstr ""
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr ""
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr ""
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
msgid " or "
msgstr ""
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr ""
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr ""
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr ""
@@ -5136,19 +5253,19 @@ msgstr ""
msgid "Please always feel free to ask your question!"
msgstr ""
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr ""
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr ""
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
msgid "subscribe to the questions feed"
msgstr ""
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5160,21 +5277,21 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5184,74 +5301,70 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/answer_tab_bar.html:14
-msgid "oldest answers will be shown first"
+#: skins/default/templates/question/answer_tab_bar.html:11
+msgid "Sort by »"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
+#: skins/default/templates/question/answer_tab_bar.html:14
+msgid "oldest answers will be shown first"
msgstr ""
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr ""
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr ""
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr ""
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
-msgstr ""
-
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
+msgid ""
+"<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)!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
@@ -5269,52 +5382,52 @@ msgstr ""
msgid "email"
msgstr ""
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr ""
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr ""
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr ""
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr ""
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr ""
@@ -5323,11 +5436,11 @@ msgid "Stats"
msgstr ""
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
+msgid "Asked"
msgstr ""
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
+msgid "Seen"
msgstr ""
#: skins/default/templates/question/sidebar.html:51
@@ -5335,34 +5448,25 @@ msgid "times"
msgstr ""
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+msgid "Last updated"
msgstr ""
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr ""
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+msgid "Email me when there are any new answers"
msgstr ""
#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
-msgstr ""
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
+msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr ""
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
-msgid "once you sign in you will be able to subscribe for any updates here"
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
msgstr ""
#: skins/default/templates/user_profile/user.html:12
@@ -5396,8 +5500,12 @@ msgstr ""
msgid "Screen Name"
msgstr ""
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+msgid "(cannot be changed)"
+msgstr ""
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr ""
@@ -5410,12 +5518,17 @@ msgstr ""
msgid "Email subscription settings"
msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+msgid "Stop Email"
msgstr ""
#: skins/default/templates/user_profile/user_favorites.html:4
@@ -5443,18 +5556,22 @@ msgid "flagged items (%(flag_count)s)"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
msgid "seen"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
msgid "none"
msgstr ""
@@ -5470,6 +5587,14 @@ msgstr ""
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+msgid "remove flags"
+msgstr ""
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+msgid "delete post"
+msgstr ""
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr ""
@@ -5483,7 +5608,7 @@ msgid "real name"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+msgid "member since"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:63
@@ -5491,7 +5616,7 @@ msgid "last seen"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
+msgid "website"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:75
@@ -5630,19 +5755,16 @@ msgid "%(username)s's network is empty"
msgstr ""
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr ""
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr ""
@@ -5665,9 +5787,8 @@ msgstr[0] ""
msgstr[1] ""
#: skins/default/templates/user_profile/user_stats.html:16
-#, python-format
-msgid "<span class=\"count\">%(counter)s</span> Answer"
-msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+msgid "Answer"
+msgid_plural "Answers"
msgstr[0] ""
msgstr[1] ""
@@ -5676,10 +5797,6 @@ msgstr[1] ""
msgid "the answer has been voted for %(answer_score)s times"
msgstr ""
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr ""
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -5717,14 +5834,14 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, 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_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
msgid "Answer to:"
msgstr ""
@@ -5732,7 +5849,7 @@ msgstr ""
msgid "User profile"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr ""
@@ -5741,47 +5858,37 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
-msgstr ""
-
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
+msgid "Graph of user karma"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr ""
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr ""
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr ""
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+msgid "give an answer interesting to this community"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -5789,7 +5896,8 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+msgid "provide enough details"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:15
@@ -5804,7 +5912,7 @@ msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+msgid "Markdown basics"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -5828,11 +5936,6 @@ msgid "**bold** or __bold__"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr ""
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -5859,28 +5962,28 @@ msgstr ""
msgid "learn more about Markdown"
msgstr ""
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr ""
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr ""
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
msgstr ""
#: skins/default/templates/widgets/contributors.html:3
@@ -5897,10 +6000,15 @@ msgid "about"
msgstr ""
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr ""
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr ""
@@ -5921,16 +6029,8 @@ msgstr ""
msgid "badges"
msgstr ""
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr ""
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr ""
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
+msgid "ask a question interesting to this community"
msgstr ""
#: skins/default/templates/widgets/question_summary.html:12
@@ -5951,27 +6051,27 @@ msgid_plural "votes"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "see your followed questions"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
msgid "Please ask your question here"
msgstr ""
@@ -5983,23 +6083,23 @@ msgstr ""
msgid "badges:"
msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
+#: skins/default/templates/widgets/user_navigation.html:9
+msgid "sign out"
msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
+#: skins/default/templates/widgets/user_navigation.html:12
+msgid "Hi, there! Please sign in"
msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr ""
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
+#: templatetags/extra_filters_jinja.py:279
+msgid "no"
msgstr ""
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr ""
@@ -6016,7 +6116,7 @@ msgid "this field is required"
msgstr ""
#: utils/forms.py:60
-msgid "choose a username"
+msgid "Choose a screen name"
msgstr ""
#: utils/forms.py:69
@@ -6048,7 +6148,7 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
+msgid "Your email <i>(never shared)</i>"
msgstr ""
#: utils/forms.py:139
@@ -6063,16 +6163,12 @@ msgstr ""
msgid "this email is already used by someone else, please choose another"
msgstr ""
-#: utils/forms.py:169
-msgid "choose password"
-msgstr ""
-
#: utils/forms.py:170
msgid "password is required"
msgstr ""
#: utils/forms.py:173
-msgid "retype password"
+msgid "Password <i>(please retype)</i>"
msgstr ""
#: utils/forms.py:174
@@ -6083,28 +6179,59 @@ msgstr ""
msgid "sorry, entered passwords did not match, please try again"
msgstr ""
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr ""
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr ""
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] ""
msgstr[1] ""
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] ""
msgstr[1] ""
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6117,186 +6244,199 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
msgstr ""
-#: views/commands.py:59
+#: views/commands.py:112
+msgid "Sorry, anonymous users cannot vote"
+msgstr ""
+
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr ""
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr ""
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr ""
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr ""
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr ""
-#: views/commands.py:320
+#: views/commands.py:339
#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr ""
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr ""
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr ""
-#: views/meta.py:84
+#: views/commands.py:620
+msgid "Please sign in to delete/restore posts"
+msgstr ""
+
+#: views/meta.py:37
+#, python-format
+msgid "About %(site)s"
+msgstr ""
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr ""
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr ""
+
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] ""
msgstr[1] ""
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] ""
-msgstr[1] ""
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr ""
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr ""
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr ""
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr ""
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr ""
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr ""
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr ""
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr ""
-#: views/users.py:897
-msgid "user reputation in the community"
+#: views/users.py:701
+msgid "user karma"
msgstr ""
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+msgid "Profile - User's Karma"
msgstr ""
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr ""
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr ""
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr ""
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr ""
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr ""
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr ""
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:192
-msgid "Please log in to ask questions"
+#: views/writers.py:189
+msgid ""
+"<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."
msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr ""
-#: views/writers.py:600
+#: views/writers.py:572
#, 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:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
-#: views/writers.py:658
+#: views/writers.py:619
#, 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:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
diff --git a/askbot/locale/el/LC_MESSAGES/djangojs.po b/askbot/locale/el/LC_MESSAGES/djangojs.po
index 15f97fd8..8d5c554f 100644
--- a/askbot/locale/el/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/el/LC_MESSAGES/djangojs.po
@@ -4,9 +4,9 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:53-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,146 +75,76 @@ msgstr ""
msgid "loading..."
msgstr ""
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr ""
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr ""
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr ""
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr ""
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr ""
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+msgid "please confirm removal of offensive flag"
+msgstr ""
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr ""
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr ""
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr ""
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr ""
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr ""
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr ""
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr ""
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr ""
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr ""
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -228,114 +158,107 @@ msgid_plural "Delete these notifications?"
msgstr[0] ""
msgstr[1] ""
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
diff --git a/askbot/locale/en/LC_MESSAGES/django.po b/askbot/locale/en/LC_MESSAGES/django.po
index 60d012fb..8cbfc93b 100644
--- a/askbot/locale/en/LC_MESSAGES/django.po
+++ b/askbot/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-11 22:40-0500\n"
+"POT-Creation-Date: 2012-04-18 18:58-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Evgeny Fadeev <evgeny.fadeev@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,8 +77,7 @@ msgstr ""
msgid "content"
msgstr ""
-#: forms.py:185 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr ""
@@ -94,244 +93,266 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: forms.py:221 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr ""
-#: forms.py:230
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] ""
msgstr[1] ""
-#: forms.py:238
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:247
+#: forms.py:249
#, 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] ""
msgstr[1] ""
-#: forms.py:256
+#: forms.py:258
msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:292
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:293
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
msgstr ""
-#: forms.py:309
+#: forms.py:311
msgid "update summary:"
msgstr ""
-#: forms.py:310
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
msgstr ""
-#: forms.py:384
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr ""
-#: forms.py:398 const/__init__.py:253
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr ""
-#: forms.py:399 const/__init__.py:254
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr ""
-#: forms.py:400 const/__init__.py:255
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr ""
-#: forms.py:401 const/__init__.py:256
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr ""
-#: forms.py:403
+#: forms.py:405
msgid "administrator"
msgstr ""
-#: forms.py:404 const/__init__.py:252
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr ""
-#: forms.py:424
+#: forms.py:426
msgid "Change status to"
msgstr ""
-#: forms.py:451
+#: forms.py:453
msgid "which one?"
msgstr ""
-#: forms.py:472
+#: forms.py:474
msgid "Cannot change own status"
msgstr ""
-#: forms.py:478
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr ""
-#: forms.py:485
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr ""
-#: forms.py:491
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr ""
-#: forms.py:497
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr ""
-#: forms.py:506
+#: forms.py:508
msgid "Subject line"
msgstr ""
-#: forms.py:513
+#: forms.py:515
msgid "Message text"
msgstr ""
-#: forms.py:528
+#: forms.py:530
msgid "Your name (optional):"
msgstr ""
-#: forms.py:529
+#: forms.py:531
msgid "Email:"
msgstr ""
-#: forms.py:531
+#: forms.py:533
msgid "Your message:"
msgstr ""
-#: forms.py:536
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:558
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:597
+#: forms.py:599
msgid "ask anonymously"
msgstr ""
-#: forms.py:599
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:752
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:756
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:814
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:827
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:871
+#: forms.py:888
msgid "Real name"
msgstr ""
-#: forms.py:878
+#: forms.py:895
msgid "Website"
msgstr ""
-#: forms.py:885
+#: forms.py:902
msgid "City"
msgstr ""
-#: forms.py:894
+#: forms.py:911
msgid "Show country"
msgstr ""
-#: forms.py:899
+#: forms.py:916
msgid "Date of birth"
msgstr ""
-#: forms.py:900
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
-#: forms.py:906
+#: forms.py:923
msgid "Profile"
msgstr ""
-#: forms.py:915
+#: forms.py:932
msgid "Screen name"
msgstr ""
-#: forms.py:946 forms.py:947
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr ""
-#: forms.py:954
+#: forms.py:971
msgid "Choose email tag filter"
msgstr ""
-#: forms.py:1001
+#: forms.py:1018
msgid "Asked by me"
msgstr ""
-#: forms.py:1004
+#: forms.py:1021
msgid "Answered by me"
msgstr ""
-#: forms.py:1007
+#: forms.py:1024
msgid "Individually selected"
msgstr ""
-#: forms.py:1010
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr ""
-#: forms.py:1014
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr ""
-#: forms.py:1095
+#: forms.py:1112
msgid "please choose one of the options above"
msgstr ""
-#: forms.py:1098
+#: forms.py:1115
msgid "okay, let's try!"
msgstr ""
-#: forms.py:1101
+#: forms.py:1118
#, python-format
msgid "no %(sitename)s email please, thanks"
msgstr ""
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
#: urls.py:41
msgid "about/"
msgstr ""
@@ -718,6 +739,24 @@ msgid ""
"by email"
msgstr ""
+#: conf/email.py:284
+msgid "Enable posting answers and comments by email"
+msgstr ""
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -862,11 +901,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -922,102 +963,106 @@ msgid "Minimum length of answer body (number of characters)"
msgstr ""
#: conf/forum_data_rules.py:126
+msgid "Are tags required?"
+msgstr ""
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr ""
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr ""
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr ""
@@ -1073,7 +1118,7 @@ msgid ""
msgstr ""
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1320,6 +1365,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1926,11 +1975,10 @@ msgid "Use automatic avatars from gravatar.com"
msgstr ""
#: conf/user_settings.py:85
-#, python-format
msgid ""
"Check this option if you want to allow the use of gravatar.com for avatars. "
-"Please, note that this feature might take about 10 minutes to become "
-"100% effective. You will have to enable uploaded avatars as well. For more "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
"html#uploaded-avatars\">this page</a>."
msgstr ""
@@ -2088,7 +2136,7 @@ msgstr ""
msgid "least voted"
msgstr ""
-#: const/__init__.py:51 const/message_keys.py:23
+#: const/__init__.py:51
msgid "relevance"
msgstr ""
@@ -2222,7 +2270,7 @@ msgstr ""
msgid "[deleted]"
msgstr ""
-#: const/__init__.py:211 views/readers.py:565
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr ""
@@ -2310,12 +2358,16 @@ msgstr ""
msgid "click to see most relevant questions"
msgstr ""
+#: const/message_keys.py:23
+msgid "by relevance"
+msgstr ""
+
#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr ""
#: const/message_keys.py:25
-msgid "date"
+msgid "by date"
msgstr ""
#: const/message_keys.py:26
@@ -2327,10 +2379,7 @@ msgid "click to see the least recently updated questions"
msgstr ""
#: const/message_keys.py:28
-#: skins/default/templates/user_profile/user_recent.html:4
-#: skins/default/templates/user_profile/user_tabs.html:29
-#: skins/default/templates/user_profile/user_tabs.html:31
-msgid "activity"
+msgid "by activity"
msgstr ""
#: const/message_keys.py:29
@@ -2342,7 +2391,7 @@ msgid "click to see the least answered questions"
msgstr ""
#: const/message_keys.py:31
-msgid "answers"
+msgid "by answers"
msgstr ""
#: const/message_keys.py:32
@@ -2354,9 +2403,7 @@ msgid "click to see least voted questions"
msgstr ""
#: const/message_keys.py:34
-#: skins/default/templates/user_profile/user_tabs.html:36
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
+msgid "by votes"
msgstr ""
#: const/message_keys.py:35
@@ -2370,7 +2417,7 @@ msgid ""
"reach a resolution."
msgstr ""
-#: const/message_keys.py:45 models/__init__.py:787
+#: const/message_keys.py:45 models/__init__.py:788
msgid ""
"Sorry, your account appears to be suspended and you cannot make new posts "
"until this issue is resolved. You can, however edit your existing posts. "
@@ -2474,7 +2521,7 @@ msgid "%(site)s user name and password"
msgstr ""
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2672,7 +2719,7 @@ msgstr ""
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:136
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr ""
@@ -2732,37 +2779,6 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
@@ -2820,74 +2836,74 @@ msgstr[1] ""
msgid "Please log in to use %s"
msgstr ""
-#: models/__init__.py:319
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:323
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:336
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr ""
-#: models/__init__.py:358
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:366
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:389
+#: models/__init__.py:390
msgid "Sorry, you cannot vote for your own posts"
msgstr ""
-#: models/__init__.py:393
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:398
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:408
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ""
-#: models/__init__.py:414
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ""
-#: models/__init__.py:429
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr ""
-#: models/__init__.py:430
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
-#: models/__init__.py:432
+#: models/__init__.py:433
#, python-format
msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2898,56 +2914,56 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:518
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:522
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:552
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:569
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:584
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:588
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:593
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:600
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:663
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -2957,93 +2973,93 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:678
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:682
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:686
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:706
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:710
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:714
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:723
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:747
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:753
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:774
+#: models/__init__.py:775
msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-#: models/__init__.py:782
+#: models/__init__.py:783
msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-#: models/__init__.py:793
+#: models/__init__.py:794
#, python-format
msgid ""
"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:814
+#: models/__init__.py:815
#, python-format
msgid ""
"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
"offensive flags per day."
msgstr ""
-#: models/__init__.py:826
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:832
+#: models/__init__.py:833
msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
-#: models/__init__.py:836
+#: models/__init__.py:837
msgid ""
"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
msgstr ""
-#: models/__init__.py:842
+#: models/__init__.py:843
#, python-format
msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgid_plural ""
@@ -3051,175 +3067,175 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:861
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:862
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:886
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:893
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:897
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:901
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:920
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:924
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:928
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:952
+#: models/__init__.py:953
msgid "sorry, but older votes cannot be revoked"
msgstr ""
-#: models/__init__.py:1438 utils/functions.py:78
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr ""
-#: models/__init__.py:1440
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1442
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1444
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1446
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1447
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1449
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1622 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr ""
-#: models/__init__.py:1718
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr ""
-#: models/__init__.py:1720
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1722
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr ""
-#: models/__init__.py:1724
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1726
+#: models/__init__.py:1757
msgid "Registered User"
msgstr ""
-#: models/__init__.py:1728
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1730
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1839
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr ""
-#: models/__init__.py:1849
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1856
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1863
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1874
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1878
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2354
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr ""
-#: models/__init__.py:2491
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2694 views/commands.py:457
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3520,6 +3536,10 @@ msgstr ""
msgid "\" and more"
msgstr ""
+#: models/reply_by_email.py:71
+msgid "edited by email"
+msgstr ""
+
#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
@@ -3583,17 +3603,17 @@ msgstr ""
msgid "No email"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:56
-#: skins/common/templates/authopenid/signin.html:106
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr ""
@@ -3794,8 +3814,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -3842,9 +3862,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -3878,81 +3898,85 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
#: skins/common/templates/authopenid/signin.html:93
+msgid "Please, sign in"
+msgstr ""
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:101 utils/forms.py:169
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:126
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:154
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:155
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:156
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:170
+#: skins/common/templates/authopenid/signin.html:177
#: skins/common/templates/question/answer_controls.html:13
-#: skins/common/templates/question/question_controls.html:10
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:172
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:185
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:190
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:192
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:195
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:206
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:208
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
@@ -4063,7 +4087,7 @@ msgid "link"
msgstr ""
#: skins/common/templates/question/answer_controls.html:13
-#: skins/common/templates/question/question_controls.html:10
+#: skins/common/templates/question/question_controls.html:4
msgid "undelete"
msgstr ""
@@ -4072,29 +4096,29 @@ msgid "remove offensive flag"
msgstr ""
#: skins/common/templates/question/answer_controls.html:21
-#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:16
msgid "remove flag"
msgstr ""
#: skins/common/templates/question/answer_controls.html:26
#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
#: skins/common/templates/question/question_controls.html:20
-#: skins/common/templates/question/question_controls.html:26
-#: skins/common/templates/question/question_controls.html:33
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
#: skins/common/templates/question/answer_controls.html:28
#: skins/common/templates/question/answer_controls.html:37
-#: skins/common/templates/question/question_controls.html:28
-#: skins/common/templates/question/question_controls.html:35
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr ""
#: skins/common/templates/question/answer_controls.html:41
-#: skins/common/templates/question/question_controls.html:42
-#: skins/default/templates/macros.html:307
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
#: skins/default/templates/revisions.html:38
#: skins/default/templates/revisions.html:41
msgid "edit"
@@ -4121,32 +4145,37 @@ msgstr ""
msgid "close date %(closed_at)s"
msgstr ""
-#: skins/common/templates/question/question_controls.html:12
+#: skins/common/templates/question/question_controls.html:6
msgid "reopen"
msgstr ""
-#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:8
#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr ""
-#: skins/common/templates/question/question_controls.html:41
+#: skins/common/templates/question/question_controls.html:35
msgid "retag"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/widgets/edit_post.html:22
+msgid ", one of these is required"
+msgstr ""
+
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+msgid "tags:"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
@@ -4791,25 +4820,42 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr ""
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr ""
#: skins/default/templates/macros.html:16
-#: skins/default/templates/macros.html:432
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
#: skins/default/templates/macros.html:19
-#: skins/default/templates/macros.html:435
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
#: skins/default/templates/macros.html:20
-#: skins/default/templates/macros.html:436
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
@@ -4849,80 +4895,80 @@ msgstr ""
msgid "updated"
msgstr ""
-#: skins/default/templates/macros.html:198
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr ""
-#: skins/default/templates/macros.html:300
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr ""
-#: skins/default/templates/macros.html:503 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr ""
-#: skins/default/templates/macros.html:512
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr ""
-#: skins/default/templates/macros.html:527
-#: skins/default/templates/macros.html:528
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr ""
-#: skins/default/templates/macros.html:539
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr ""
-#: skins/default/templates/macros.html:541
-#: skins/default/templates/macros.html:548
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
#, python-format
msgid "page %(num)s"
msgstr ""
-#: skins/default/templates/macros.html:552
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr ""
-#: skins/default/templates/macros.html:603
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr ""
-#: skins/default/templates/macros.html:606
+#: skins/default/templates/macros.html:610
#, python-format
msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/macros.html:609
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:624
-#: skins/default/templates/macros.html:625
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:627
-#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:633
-#: skins/default/templates/macros.html:634
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -4931,19 +4977,33 @@ msgstr ""
msgid "Questions"
msgstr ""
-#: skins/default/templates/question.html:98
+#: skins/default/templates/question.html:110
msgid "post a comment / <strong>some</strong> more"
msgstr ""
-#: skins/default/templates/question.html:101
+#: skins/default/templates/question.html:113
msgid "see <strong>some</strong> more"
msgstr ""
-#: skins/default/templates/question.html:105
+#: skins/default/templates/question.html:117
#: skins/default/templates/question/javascript.html:20
msgid "post a comment"
msgstr ""
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr ""
+
+#: skins/default/templates/question.html:140
+msgid "Post Your Answer"
+msgstr ""
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+msgid "Login/Signup to Post"
+msgstr ""
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
msgid "Edit question"
@@ -5005,6 +5065,13 @@ msgstr ""
msgid "Reopen this question"
msgstr ""
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5219,21 +5286,21 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5268,11 +5335,6 @@ msgstr ""
msgid "most voted answers will be shown first"
msgstr ""
-#: skins/default/templates/question/content.html:40
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer Your Own Question"
-msgstr ""
-
#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr ""
@@ -5314,15 +5376,6 @@ msgid ""
"best questions and answers!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:45
-#: skins/default/templates/widgets/ask_form.html:41
-msgid "Login/Signup to Post"
-msgstr ""
-
-#: skins/default/templates/question/new_answer_form.html:50
-msgid "Post Your Answer"
-msgstr ""
-
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
msgid ""
@@ -5338,76 +5391,76 @@ msgstr ""
msgid "email"
msgstr ""
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr ""
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr ""
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr ""
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr ""
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr ""
-#: skins/default/templates/question/sidebar.html:44
+#: skins/default/templates/question/sidebar.html:46
msgid "Stats"
msgstr ""
-#: skins/default/templates/question/sidebar.html:46
+#: skins/default/templates/question/sidebar.html:48
msgid "Asked"
msgstr ""
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "Seen"
msgstr ""
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr ""
-#: skins/default/templates/question/sidebar.html:52
+#: skins/default/templates/question/sidebar.html:54
msgid "Last updated"
msgstr ""
-#: skins/default/templates/question/sidebar.html:60
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr ""
@@ -5710,6 +5763,12 @@ msgstr ""
msgid "%(username)s's network is empty"
msgstr ""
+#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
+#: skins/default/templates/user_profile/user_tabs.html:31
+msgid "activity"
+msgstr ""
+
#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
@@ -5819,6 +5878,11 @@ msgstr ""
msgid "user vote record"
msgstr ""
+#: skins/default/templates/user_profile/user_tabs.html:36
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr ""
+
#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr ""
@@ -6146,6 +6210,37 @@ msgid_plural "%(min)d mins ago"
msgstr[0] ""
msgstr[1] ""
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6194,21 +6289,21 @@ msgstr ""
msgid "email update frequency has been set to daily"
msgstr ""
-#: views/commands.py:461
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:470
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:596
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr ""
-#: views/commands.py:616
+#: views/commands.py:620
msgid "Please sign in to delete/restore posts"
msgstr ""
@@ -6217,19 +6312,19 @@ msgstr ""
msgid "About %(site)s"
msgstr ""
-#: views/meta.py:86
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
-#: views/meta.py:87
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr ""
-#: views/meta.py:96
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/meta.py:100
+#: views/meta.py:106
msgid "Privacy policy"
msgstr ""
@@ -6240,7 +6335,7 @@ msgid_plural "%(q_num)s questions, tagged"
msgstr[0] ""
msgstr[1] ""
-#: views/readers.py:387
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
@@ -6306,21 +6401,21 @@ msgstr ""
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
-#: views/writers.py:70
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr ""
-#: views/writers.py:90
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
-#: views/writers.py:98
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:205
+#: views/writers.py:189
msgid ""
"<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 "
@@ -6329,29 +6424,29 @@ msgid ""
"Login takes about 30 seconds, initial signup takes a minute or less."
msgstr ""
-#: views/writers.py:482
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr ""
-#: views/writers.py:588
+#: views/writers.py:572
#, 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:605
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
-#: views/writers.py:635
+#: views/writers.py:619
#, 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:656
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
diff --git a/askbot/locale/en/LC_MESSAGES/djangojs.po b/askbot/locale/en/LC_MESSAGES/djangojs.po
index 46073a5e..fa93edf1 100644
--- a/askbot/locale/en/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/en/LC_MESSAGES/djangojs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:58-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,148 +75,81 @@ msgstr ""
msgid "loading..."
msgstr ""
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "please enter at least one tag"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:135
-#, fuzzy, c-format
-msgid "%s content minchars"
-msgstr "please enter more than %s characters"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr ""
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "please enter at least %s characters"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr ""
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "sorry, you cannot accept your own answer"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr ""
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "sorry, anonymous users cannot vote "
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
"are you sure this post is offensive, contains spam, advertising, malicious "
"remarks, etc.?"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr ""
+"are you sure this post is offensive, contains spam, advertising, malicious "
+"remarks, etc.?"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "are you sure you want to delete this?"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "sorry, anonymous users cannot delete or undelete posts"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "your post is now restored!"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "your post has been deleted"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "Follow"
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr ""
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr ""
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr ""
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "save comment"
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "please enter at least %s more characters"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr ""
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "Are you sure you do not want to post this comment?"
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "do you really want to delete this comment?"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -230,116 +163,140 @@ msgid_plural "Delete these notifications?"
msgstr[0] ""
msgstr[1] ""
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "click to edit this comment"
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "edit"
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
"enter URL of the image, e.g. http://www.example.com/image.jpg or upload an "
"image file"
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr "enter Web address, e.g. http://www.example.com \"page title\""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "Please choose and upload a file:"
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
+#~ msgid "tags cannot be empty"
+#~ msgstr "please enter at least one tag"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
+#, fuzzy
+#~ msgid "%s content minchars"
+#~ msgstr "please enter more than %s characters"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
+#~ msgid "%s title minchars"
+#~ msgstr "please enter at least %s characters"
+
+#~ msgid "Follow"
+#~ msgstr "Follow"
+
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "please enter at least %s more characters"
+
+#~ msgid "confirm abandon comment"
+#~ msgstr "Are you sure you do not want to post this comment?"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "do you really want to delete this comment?"
+
+#~ msgid "click to edit this comment"
+#~ msgstr "click to edit this comment"
+
+#~ msgid "edit"
+#~ msgstr "edit"
diff --git a/askbot/locale/es/LC_MESSAGES/django.po b/askbot/locale/es/LC_MESSAGES/django.po
index 08103e3c..2b3e9eb5 100644
--- a/askbot/locale/es/LC_MESSAGES/django.po
+++ b/askbot/locale/es/LC_MESSAGES/django.po
@@ -1,26 +1,28 @@
# English translation for CNPROG package.
# Copyright (C) 2009 Gang Chen, 2010 Askbot
# This file is distributed under the same license as the CNPROG package.
-#
+#
# Translators:
# Victor Trujillo <>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
-"Report-Msgid-Bugs-To: http://askbot.org/\n"
-"POT-Creation-Date: 2012-02-21 16:37-0600\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-04-18 18:50-0500\n"
"PO-Revision-Date: 2012-03-13 17:13+0000\n"
"Last-Translator: Victor Trujillo <>\n"
-"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/askbot/language/es/)\n"
+"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/"
+"askbot/language/es/)\n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#: exceptions.py:13
msgid "Sorry, but anonymous visitors cannot access this function"
-msgstr "Lo sentimos, pero los usuarios anónimos no pueden acceder a esta función"
+msgstr ""
+"Lo sentimos, pero los usuarios anónimos no pueden acceder a esta función"
#: feed.py:28 feed.py:90
msgid " - "
@@ -57,24 +59,33 @@ msgstr "título"
msgid "please enter a descriptive title for your question"
msgstr "por favor ingrese un título descriptivo para su pregunta"
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "el titulo debe contener mas de %d caracter"
msgstr[1] "el titulo debe contener mas de %d caracteres"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "contenido"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "etiquetas"
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -82,245 +93,289 @@ msgid ""
msgid_plural ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tags can "
"be used."
-msgstr[0] "Las etiquetas son palabras claves sin espacios en blanco. Puedes añadir %(max_tags)d etiqueta."
-msgstr[1] "Las etiquetas son palabras claves sin espacios en blanco. Puedes añadir hasta %(max_tags)d etiquetas."
-
-#: forms.py:201 skins/default/templates/question_retag.html:58
+msgstr[0] ""
+"Las etiquetas son palabras claves sin espacios en blanco. Puedes añadir "
+"%(max_tags)d etiqueta."
+msgstr[1] ""
+"Las etiquetas son palabras claves sin espacios en blanco. Puedes añadir "
+"hasta %(max_tags)d etiquetas."
+
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "etiquetas requeridas"
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "por favor utiliza %(tag_count)d tag o menos"
msgstr[1] "por favor utiliza %(tag_count)d tags o menos"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "Al menos una de las siguientes etiquetas se requieren : %(tags)s"
-#: forms.py:227
+#: forms.py:249
#, 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] "cada tag debe ser de menos de %(max_chars)d carácter"
msgstr[1] "cada tag debe ser de menos de %(max_chars)d caracteres"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "usa-estos-caracteres-en-las-etiquetas"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
-msgstr "wiki comunitaria (no se premia karma y cualquiera puede editar la publicación wiki)"
+msgstr ""
+"wiki comunitaria (no se premia karma y cualquiera puede editar la "
+"publicación wiki)"
-#: forms.py:271
+#: forms.py:295
msgid ""
-"if you choose community wiki option, the question and answer do not generate"
-" points and name of author will not be shown"
-msgstr "si marcas la opción Wiki comunitaria,la pregunta y las respuestas no generan puntos y el nombre del autor no se muestra"
+"if you choose community wiki option, the question and answer do not generate "
+"points and name of author will not be shown"
+msgstr ""
+"si marcas la opción Wiki comunitaria,la pregunta y las respuestas no generan "
+"puntos y el nombre del autor no se muestra"
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "actualizar resúmen:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
-msgstr "ingrese un breve resumen de su revisión (por ejemplo, corregir la ortografía, la gramática, el estilo mejorado, este campo es opcional)"
+msgstr ""
+"ingrese un breve resumen de su revisión (por ejemplo, corregir la "
+"ortografía, la gramática, el estilo mejorado, este campo es opcional)"
-#: forms.py:362
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Ingrese el número de puntos a añadir o quitar"
-#: forms.py:376 const/__init__.py:247
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "aprobado"
-#: forms.py:377 const/__init__.py:248
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "visto"
-#: forms.py:378 const/__init__.py:249
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "desactivado"
-#: forms.py:379 const/__init__.py:250
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "bloqueado"
-#: forms.py:381
+#: forms.py:405
msgid "administrator"
msgstr "administrador"
-#: forms.py:382 const/__init__.py:246
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "moderador"
-#: forms.py:402
+#: forms.py:426
msgid "Change status to"
msgstr "Cambiar estado a"
-#: forms.py:429
+#: forms.py:453
msgid "which one?"
msgstr "Cuál?"
-#: forms.py:450
+#: forms.py:474
msgid "Cannot change own status"
msgstr "No puedes cambiar tu propio estado"
-#: forms.py:456
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "No tiene permitido habilitar a otros usuarios como moderadores"
-#: forms.py:463
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "No tiene permitido cambiar el estado de otro moderador"
-#: forms.py:469
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "No puedes cambiar el estado a Admin"
-#: forms.py:475
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
-msgstr "Si deseas cambiar el estado de %(username)s, por favor haz la selección correcta"
+msgstr ""
+"Si deseas cambiar el estado de %(username)s, por favor haz la selección "
+"correcta"
-#: forms.py:484
+#: forms.py:508
msgid "Subject line"
msgstr "Línea del tema"
-#: forms.py:491
+#: forms.py:515
msgid "Message text"
msgstr "Texto del mensaje"
-#: forms.py:506
+#: forms.py:530
msgid "Your name (optional):"
msgstr "Tu nombre (opcional):"
-#: forms.py:507
+#: forms.py:531
msgid "Email:"
msgstr "Email:"
-#: forms.py:509
+#: forms.py:533
msgid "Your message:"
msgstr "Su mensaje:"
-#: forms.py:514
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "No deseo dar mi correo electrónico o recibir una respuesta:"
-#: forms.py:536
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr "Por favor, marque el campo \"No deseo dar mi correo electrónico\"."
-#: forms.py:575
+#: forms.py:599
msgid "ask anonymously"
msgstr "pregunte anónimamente"
-#: forms.py:577
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr "Compruebe si no desea revelar su nombre cuando realice esta pregunta"
-#: forms.py:737
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
-msgstr "Ha solicitado realizar esta pregunta anónimamente, si decide revelar su identidad, por favor marque esta caja."
+msgstr ""
+"Ha solicitado realizar esta pregunta anónimamente, si decide revelar su "
+"identidad, por favor marque esta caja."
-#: forms.py:741
+#: forms.py:773
msgid "reveal identity"
msgstr "revelar identidad"
-#: forms.py:799
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
-msgstr "Lo sentimos, sólo el propietario de la pregunta anónima puede revelar su identidad, por favor desactiva el check de la casilla"
+msgstr ""
+"Lo sentimos, sólo el propietario de la pregunta anónima puede revelar su "
+"identidad, por favor desactiva el check de la casilla"
-#: forms.py:812
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
-msgstr "Lo sentimos, las normas han cambiado y no es posible preguntar de forma anónima. Por favor, haz click en \"revelar identidad\" o recarga esta página e intenta editar esta pregunta de nuevo."
+msgstr ""
+"Lo sentimos, las normas han cambiado y no es posible preguntar de forma "
+"anónima. Por favor, haz click en \"revelar identidad\" o recarga esta página "
+"e intenta editar esta pregunta de nuevo."
-#: forms.py:856
+#: forms.py:888
msgid "Real name"
msgstr "Nombre Real"
-#: forms.py:863
+#: forms.py:895
msgid "Website"
msgstr "Sitio Web"
-#: forms.py:870
+#: forms.py:902
msgid "City"
msgstr "Ciudad"
-#: forms.py:879
+#: forms.py:911
msgid "Show country"
msgstr "Mostrar país"
-#: forms.py:884
+#: forms.py:916
msgid "Date of birth"
msgstr "Fecha de nacimiento"
-#: forms.py:885
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "no será mostrada, se usa para calcular la edad, formato: Año-Mes-Dia"
-#: forms.py:891
+#: forms.py:923
msgid "Profile"
msgstr "Perfil"
-#: forms.py:900
+#: forms.py:932
msgid "Screen name"
msgstr "Nombre para mostrar"
-#: forms.py:931 forms.py:932
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
-msgstr "esta dirección de email ya ha sido registrada, por favor utiliza una diferente"
+msgstr ""
+"esta dirección de email ya ha sido registrada, por favor utiliza una "
+"diferente"
-#: forms.py:939
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Seleccione una etiqueta de filtro para el email"
-#: forms.py:986
+#: forms.py:1018
msgid "Asked by me"
msgstr "Preguntadas por mi"
-#: forms.py:989
+#: forms.py:1021
msgid "Answered by me"
msgstr "Respondidas por mi"
-#: forms.py:992
+#: forms.py:1024
msgid "Individually selected"
msgstr "Selección individual"
-#: forms.py:995
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Foro completo (filtrado por etiqueta)"
-#: forms.py:999
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Comentarios y post que me mencionan"
-#: forms.py:1077
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "por favor seleccione una de las siguientes opciones"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "bien, vamos a probar!"
-#: forms.py:1078
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "no usar un email de la comunidad, por favor"
-#: forms.py:1082
-msgid "please choose one of the options above"
-msgstr "por favor seleccione una de las siguientes opciones"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
#: urls.py:41
msgid "about/"
@@ -342,7 +397,7 @@ msgstr "ayuda/"
msgid "answers/"
msgstr "respuestas/"
-#: urls.py:46 urls.py:87 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "editar/"
@@ -355,7 +410,7 @@ msgid "questions"
msgstr "preguntas"
#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
-#: urls.py:112 urls.py:117 urls.py:123 urls.py:294
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "preguntas/"
@@ -387,51 +442,51 @@ msgstr "votar/"
msgid "widgets/"
msgstr "widgets/"
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "etiquetas/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "suscripcion-por-tags/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "usuarios/"
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr "suscripciones/"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr "usuarios/actualizar_avatar_personalizado/"
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "trofeos/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "mensajes/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "marcar-como-leidos/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "subir/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "feedback/"
-#: urls.py:300
+#: urls.py:305
msgid "question/"
msgstr "pregunta/"
-#: urls.py:307 setup_templates/settings.py:210
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "cuenta/"
@@ -556,153 +611,214 @@ msgstr "Prefijo para el campo de correo electrónico"
msgid ""
"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A "
"value entered here will overridethe default."
-msgstr "Esta configuración se tomará por defecto dela valor de django EMAIL_SUBJECT_PREFIX. Si introduces un valor aquí se ignorará el valor por defecto."
+msgstr ""
+"Esta configuración se tomará por defecto dela valor de django "
+"EMAIL_SUBJECT_PREFIX. Si introduces un valor aquí se ignorará el valor por "
+"defecto."
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Configuración de alertas y email"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Número máximo de nuevas entradas en una alerta de email"
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr "Frecuencia de notificación por defecto para todas las preguntas"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
-msgstr "Opción para definir la frecuencia de las actualizaciones enviadas por email para todas las preguntas"
+msgstr ""
+"Opción para definir la frecuencia de las actualizaciones enviadas por email "
+"para todas las preguntas"
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
-msgstr "Frecuencia de notificación por defecto para las preguntas realizadas por el usuario"
+msgstr ""
+"Frecuencia de notificación por defecto para las preguntas realizadas por el "
+"usuario"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
-msgstr "Opción para definir la frecuencia de las actualizaciones enviadas por email para las preguntas realizadas por el usuario."
+msgstr ""
+"Opción para definir la frecuencia de las actualizaciones enviadas por email "
+"para las preguntas realizadas por el usuario."
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
-msgstr "Frecuencia de notificación por defecto para las respuestas realizadas por el usuario"
+msgstr ""
+"Frecuencia de notificación por defecto para las respuestas realizadas por el "
+"usuario"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
-msgstr "Opción para definir la frecuencia de las actualizaciones enviadas por email para las preguntas realizadas por el usuario."
+msgstr ""
+"Opción para definir la frecuencia de las actualizaciones enviadas por email "
+"para las preguntas realizadas por el usuario."
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
-"Default notification frequency questions individually"
-" selected by the user"
-msgstr "Frecuencia por defecto de las notificaciones seleccionadas por el usuario"
+"Default notification frequency questions individually "
+"selected by the user"
+msgstr ""
+"Frecuencia por defecto de las notificaciones seleccionadas por el usuario"
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
-msgstr "Opción para definir la frecuencia de las actualizaciones para las preguntas seleccionadas por el usuario"
+msgstr ""
+"Opción para definir la frecuencia de las actualizaciones para las preguntas "
+"seleccionadas por el usuario"
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
-msgstr "Frecuencia por defecto de las notificaciones de las menciones y los comentarios"
+msgstr ""
+"Frecuencia por defecto de las notificaciones de las menciones y los "
+"comentarios"
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
-msgstr "Opción para definir la frecuencia de las actualizaciones enviadas por email para las menciones y comentarios"
+msgstr ""
+"Opción para definir la frecuencia de las actualizaciones enviadas por email "
+"para las menciones y comentarios"
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr "Enviar recordatorios periódicos sobre preguntas sin contestar"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
-msgstr "NOTA: para utilizar este ajuste, es necesario ejecutar el comando de gestión \"send_unanswered_questions_reminders\" (por ejemplo, via cron job con la frecuencia correcta)"
+msgstr ""
+"NOTA: para utilizar este ajuste, es necesario ejecutar el comando de gestión "
+"\"send_unanswered_questions_reminders\" (por ejemplo, via cron job con la "
+"frecuencia correcta)"
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
-msgstr "Días antes de empezar a enviar recordatorios sobre preguntas sin contestar"
+msgstr ""
+"Días antes de empezar a enviar recordatorios sobre preguntas sin contestar"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
-msgstr "Frecuencia para enviar recordatorios sobre preguntas sin contestar (en días)"
+msgstr ""
+"Frecuencia para enviar recordatorios sobre preguntas sin contestar (en días)"
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr "Número máximo de recordatorios a enviar sobre preguntas sin contestar"
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr "Enviar recordatorios periódicos para aceptar la mejor respuesta"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
-"command \"send_accept_answer_reminders\" (for example, via a cron job - with"
-" an appropriate frequency) "
-msgstr "NOTA: para utilizar esta característica es necesario ejecutar el comando \"send_accept_answer_reminders\" (por ejemplo via cron job con su correspondiente frecuencia) "
+"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
+"an appropriate frequency) "
+msgstr ""
+"NOTA: para utilizar esta característica es necesario ejecutar el comando "
+"\"send_accept_answer_reminders\" (por ejemplo via cron job con su "
+"correspondiente frecuencia) "
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
-msgstr "Días antes de empezar a enviar recordatorios para aceptar una respuesta"
+msgstr ""
+"Días antes de empezar a enviar recordatorios para aceptar una respuesta"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
-msgstr "Con qué frecuencia se envían recordatorios para aceptar respuestas (en días entre los recordatorios enviados)"
+msgstr ""
+"Con qué frecuencia se envían recordatorios para aceptar respuestas (en días "
+"entre los recordatorios enviados)"
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr "Número máximo de recordatorios a enviar para aceptar la mejor pregunta"
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr "Se requiere una verificación via email antes de poder publicar"
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
-msgstr "Se ha comenzado el proceso de verificación con una llave enviada a su correo electrónico"
+msgstr ""
+"Se ha comenzado el proceso de verificación con una llave enviada a su correo "
+"electrónico"
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr "Permitir sólo una cuenta por cada email"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr "Email falso para un usuario anónimo"
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr "Utiliza esta configuración para controlar el email de gravatar"
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr "Permitir enviar preguntas por email"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
-"Before enabling this setting - please fill out IMAP settings in the "
-"settings.py file"
-msgstr "Antes de activar esta opción, por favor completa la configuración de IMAP en el archivo settings.py"
+"Before enabling this setting - please fill out IMAP settings in the settings."
+"py file"
+msgstr ""
+"Antes de activar esta opción, por favor completa la configuración de IMAP en "
+"el archivo settings.py"
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr "Reemplazar el espacio en las etiquetas con un guión"
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
-msgstr "Esta configuración se aplica a las etiquetas escritas en el Asunto de las preguntas preguntadas por email"
+msgstr ""
+"Esta configuración se aplica a las etiquetas escritas en el Asunto de las "
+"preguntas preguntadas por email"
+
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "Permitir enviar preguntas por email"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
#: conf/external_keys.py:11
msgid "Keys for external services"
@@ -715,9 +831,11 @@ msgstr "Llave de verificación de Google site"
#: conf/external_keys.py:21
#, python-format
msgid ""
-"This key helps google index your site please obtain is at <a "
-"href=\"%(url)s?hl=%(lang)s\">google webmasters tools site</a>"
-msgstr "Esta llave ayuda a google a indizar tu sitio, puedes obtenerla en <a href=\"%(url)s?hl=%(lang)s\">google webmasters tools</a>"
+"This key helps google index your site please obtain is at <a href=\"%(url)s?"
+"hl=%(lang)s\">google webmasters tools site</a>"
+msgstr ""
+"Esta llave ayuda a google a indizar tu sitio, puedes obtenerla en <a href="
+"\"%(url)s?hl=%(lang)s\">google webmasters tools</a>"
#: conf/external_keys.py:36
msgid "Google Analytics key"
@@ -728,105 +846,100 @@ msgstr "LLave de Googne Analytics"
msgid ""
"Obtain is at <a href=\"%(url)s\">Google Analytics</a> site, if you wish to "
"use Google Analytics to monitor your site"
-msgstr "Puedes obtener <a href=\"%(url)s\">Google Analytics</a>, si deseas utilizar Google Analytics para ver las estadísticas de tu sitio."
+msgstr ""
+"Puedes obtener <a href=\"%(url)s\">Google Analytics</a>, si deseas utilizar "
+"Google Analytics para ver las estadísticas de tu sitio."
#: conf/external_keys.py:51
msgid "Enable recaptcha (keys below are required)"
msgstr "Habilitar recaptcha (las llaves de abajo son requeridas)"
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr "Llave pública de Recaptcha"
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr "Llave privada de Recaptcha"
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
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=\"%(url)s\">%(url)s</a>"
-msgstr "Recaptcha te permite distinguir a gente real de los robots que envían spam. Puedes obtener una clave pública aqui: <a href=\"%(url)s\">%(url)s</a>"
+"robots. Please get this and a public key at the <a href=\"%(url)s\">%(url)s</"
+"a>"
+msgstr ""
+"Recaptcha te permite distinguir a gente real de los robots que envían spam. "
+"Puedes obtener una clave pública aqui: <a href=\"%(url)s\">%(url)s</a>"
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr "Llave pública para API de Facebook"
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
-"method at your site. Please obtain these keys at <a "
-"href=\"%(url)s\">facebook create app</a> site"
-msgstr "Facebook API Key y Facebook Secret te permiten utilizar Facebook Connect en tu sitio. Para obtener las llaves debes <a href=\"%(url)s\">crear aplicación en Facebook</a> site"
+"method at your site. Please obtain these keys at <a href=\"%(url)s"
+"\">facebook create app</a> site"
+msgstr ""
+"Facebook API Key y Facebook Secret te permiten utilizar Facebook Connect en "
+"tu sitio. Para obtener las llaves debes <a href=\"%(url)s\">crear aplicación "
+"en Facebook</a> site"
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Llave privada de Facebook"
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr "Twitter Key"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
-"Please register your forum at <a href=\"%(url)s\">twitter applications "
-"site</a>"
-msgstr "Por favor, registra tu foro en <a href=\"%(url)s\">twitter para aplicaciones</a>"
+"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
+"a>"
+msgstr ""
+"Por favor, registra tu foro en <a href=\"%(url)s\">twitter para "
+"aplicaciones</a>"
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr "Twitter Secret"
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr "LinkedIn Key"
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
-"Please register your forum at <a href=\"%(url)s\">LinkedIn developer "
-"site</a>"
-msgstr "Por favor, registra tu foro en <a href=\"%(url)s\">LinkedIn para Desarrolladores</a>"
+"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
+msgstr ""
+"Por favor, registra tu foro en <a href=\"%(url)s\">LinkedIn para "
+"Desarrolladores</a>"
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr "LinkedIn Secret"
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr "ident.ca key"
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
-msgstr "Por favor, registra tu foro en <a href=\"%(url)s\">Identi.ca aplicaciones</a>"
+msgstr ""
+"Por favor, registra tu foro en <a href=\"%(url)s\">Identi.ca aplicaciones</a>"
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr "ident.ca secret"
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr "Utiliza la autenticación LDAP para el password del login"
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr "Proveedor de servicio LDAP"
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr "URL del servicio LDAP"
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr "Explicar cómo cambiar el password LDAP"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "Páginas simples - sobre nosotros, política de privacidad, etc."
@@ -839,7 +952,9 @@ msgstr "Texto para la página de descripción del foro (formato html)"
msgid ""
"Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on "
"the \"about\" page to check your input."
-msgstr "Guarda y luego <a href=\"http://validator.w3.org/\">utiliza el validador HTML</a> en la página de \"sobre nosotros\" para comprobar el resultado."
+msgstr ""
+"Guarda y luego <a href=\"http://validator.w3.org/\">utiliza el validador "
+"HTML</a> en la página de \"sobre nosotros\" para comprobar el resultado."
#: conf/flatpages.py:32
msgid "Text of the Q&A forum FAQ page (html format)"
@@ -849,28 +964,37 @@ msgstr "Texto de la página de \"FAQ\" del foro Q&A (en formato html)"
msgid ""
"Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on "
"the \"faq\" page to check your input."
-msgstr "Guarda y luego <a href=\"http://validator.w3.org/\">utiliza el validador HTML</a> en la página de \"FAQ\" para comprobar el resultado."
+msgstr ""
+"Guarda y luego <a href=\"http://validator.w3.org/\">utiliza el validador "
+"HTML</a> en la página de \"FAQ\" para comprobar el resultado."
#: conf/flatpages.py:46
msgid "Text of the Q&A forum Privacy Policy (html format)"
-msgstr "Texto para la página de politicas de privacidad del foro (formato html)"
+msgstr ""
+"Texto para la página de politicas de privacidad del foro (formato html)"
#: conf/flatpages.py:49
msgid ""
"Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on "
"the \"privacy\" page to check your input."
-msgstr "Guarda y luego <a href=\"http://validator.w3.org/\">utiliza el validador HTML</a> en la página de \"PRIVACIDAD\" para comprobar el resultado."
+msgstr ""
+"Guarda y luego <a href=\"http://validator.w3.org/\">utiliza el validador "
+"HTML</a> en la página de \"PRIVACIDAD\" para comprobar el resultado."
#: conf/forum_data_rules.py:12
msgid "Data entry and display rules"
msgstr "Entrada de datos y reglas de diseño"
-#: conf/forum_data_rules.py:22
-#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read "
-"this</a> first.</em>"
-msgstr "Activar embeber videos. <em>Nota: por favor <a href=\"%(url)s>lee esto</a> antes.</em>"
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
+#, fuzzy, python-format
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
+msgstr ""
+"Activar embeber videos. <em>Nota: por favor <a href=\"%(url)s>lee esto</a> "
+"antes.</em>"
#: conf/forum_data_rules.py:33
msgid "Check to enable community wiki feature"
@@ -882,9 +1006,11 @@ msgstr "Permitir hacer preguntas anónimamente"
#: conf/forum_data_rules.py:44
msgid ""
-"Users do not accrue reputation for anonymous questions and their identity is"
-" not revealed until they change their mind"
-msgstr "Los usuarios no acumulan reputación por hacer preguntas anónimas y su identidad no será revelada hasta que cambien de opinión"
+"Users do not accrue reputation for anonymous questions and their identity is "
+"not revealed until they change their mind"
+msgstr ""
+"Los usuarios no acumulan reputación por hacer preguntas anónimas y su "
+"identidad no será revelada hasta que cambien de opinión"
#: conf/forum_data_rules.py:56
msgid "Allow posting before logging in"
@@ -896,7 +1022,11 @@ msgid ""
"logging in. Enabling this may require adjustments in the user login system "
"to check for pending posts every time the user logs in. The builtin Askbot "
"login system supports this feature."
-msgstr "Marca la casilla para permitir a los usuarios enviar preguntas o respuestas antes de hacer login. Activar esto puede precisar ajustes en el sistema de login de usuarios para comprobar los post pendientes cada vez que el usuario hace login. Askbot soporta por defecto esta característica."
+msgstr ""
+"Marca la casilla para permitir a los usuarios enviar preguntas o respuestas "
+"antes de hacer login. Activar esto puede precisar ajustes en el sistema de "
+"login de usuarios para comprobar los post pendientes cada vez que el usuario "
+"hace login. Askbot soporta por defecto esta característica."
#: conf/forum_data_rules.py:73
msgid "Allow swapping answer with question"
@@ -906,7 +1036,10 @@ msgstr "Permitir intercambiar una respuesta por una pregunta"
msgid ""
"This setting will help import data from other forums such as zendesk, when "
"automatic data import fails to detect the original question correctly."
-msgstr "Este ajuste te ayudará a importar datos de otros foros como zendesk, cuando falle la importación automática de datos y no detecte la pregunta original correctamente."
+msgstr ""
+"Este ajuste te ayudará a importar datos de otros foros como zendesk, cuando "
+"falle la importación automática de datos y no detecte la pregunta original "
+"correctamente."
#: conf/forum_data_rules.py:87
msgid "Maximum length of tag (number of characters)"
@@ -925,106 +1058,160 @@ msgid "Minimum length of answer body (number of characters)"
msgstr "Tamaño minimo de la respuesta (numero de caracteres)"
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "etiquetas requeridas"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr "Etiquetas obligatorias"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
-msgstr "Al menos una de estas etiquetas será requerida por cada nueva pregunta o editada. Una etiqueta obligatoria podria ser el asterisco, si las etiquetas comodín están activadas."
+msgstr ""
+"Al menos una de estas etiquetas será requerida por cada nueva pregunta o "
+"editada. Una etiqueta obligatoria podria ser el asterisco, si las etiquetas "
+"comodín están activadas."
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr "Forzar las minúsculas en las etiquetas"
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
-msgstr "Atención: después de marcar esto, por favor haz un backup de tu base de datos y ejecuta el siguiente comando: <code>python manage.py fix_question_tags</code> para renombrar todas las tags globalmente"
+msgstr ""
+"Atención: después de marcar esto, por favor haz un backup de tu base de "
+"datos y ejecuta el siguiente comando: <code>python manage.py "
+"fix_question_tags</code> para renombrar todas las tags globalmente"
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr "Formato de la lista de etiquetas"
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
-"Select the format to show tags in, either as a simple list, or as a tag "
-"cloud"
-msgstr "Selecciona el formato para mostrar las etiquetas, como un listado simple, o como una nube de etiquetas"
+"Select the format to show tags in, either as a simple list, or as a tag cloud"
+msgstr ""
+"Selecciona el formato para mostrar las etiquetas, como un listado simple, o "
+"como una nube de etiquetas"
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "Utilizar etiquetas comodín"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
-msgstr "Las etiquetas comodín pueden ser utilizadas para seguir o ignorar muchas etiquetas de una vez, una etiqueta comodín válida tiene un asterisco al final de la misma"
+msgstr ""
+"Las etiquetas comodín pueden ser utilizadas para seguir o ignorar muchas "
+"etiquetas de una vez, una etiqueta comodín válida tiene un asterisco al "
+"final de la misma"
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
-msgstr "Cantidad máxima por defecto, de comentarios a mostrarse para cada entrada"
+msgstr ""
+"Cantidad máxima por defecto, de comentarios a mostrarse para cada entrada"
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr "Tamaño máximo de un comentario, debe ser menor a %(max_len)s"
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr "Limitar el tiempo para editar los comentarios"
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr "Si no está marcado, no existirá tiempo para editar los comentarios"
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr "Minutos permitidos para editar un comentario"
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr "Para activar este ajuste, marca el anterior"
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr "Guardar comentario pulsando la tecla <INTRO>"
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr "Tamaño minimo para terminos de búsqueda Ajax "
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr "Debe coincidir con el ajuste correspondiente de la base de datos"
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr "No fijar el texto en el campo de búsqueda"
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
-msgstr "Marcar para desactivar la fijación de texto en el campo de búsqueda. Esto puede servir de ayuda si quieres mover la barra de búsqueda lejos de la posición por defecto o no te gusta el comportamiento del texto fijo en la caja de búsqueda."
+msgstr ""
+"Marcar para desactivar la fijación de texto en el campo de búsqueda. Esto "
+"puede servir de ayuda si quieres mover la barra de búsqueda lejos de la "
+"posición por defecto o no te gusta el comportamiento del texto fijo en la "
+"caja de búsqueda."
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "Número máximo de etiquetas por cada pregunta"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr "Número máximo de preguntas a listar por defecto"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "¿Qué debería significar \"pregunta sin responder\"?"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr "Utiliza la autenticación LDAP para el password del login"
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+#, fuzzy
+msgid "LDAP Server USERID field name"
+msgstr "Proveedor de servicio LDAP"
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+#, fuzzy
+msgid "LDAP Server EMAIL field name"
+msgstr "Proveedor de servicio LDAP"
+
#: conf/leading_sidebar.py:12
msgid "Common left sidebar"
msgstr "Columna lateral de la izquierda"
@@ -1042,10 +1229,14 @@ msgid ""
"Use this area to enter content at the LEFT sidebarin HTML format. When "
"using this option, please use the HTML validation service to make sure that "
"your input is valid and works well in all browsers."
-msgstr "Utiliza este area para introducir contenido en la columna de la izquierda en formato HTML. Cuando utilices esta opcion, asegurate de validar tu codigo HTML para que funcione en todos los navegadores."
+msgstr ""
+"Utiliza este area para introducir contenido en la columna de la izquierda en "
+"formato HTML. Cuando utilices esta opcion, asegurate de validar tu codigo "
+"HTML para que funcione en todos los navegadores."
#: conf/license.py:13
-msgid "Content LicensContent License"
+#, fuzzy
+msgid "Content License"
msgstr "Licencia de Contenido"
#: conf/license.py:21
@@ -1089,34 +1280,43 @@ msgid "Login provider setings"
msgstr "Configuración del login del proveedor"
#: conf/login_providers.py:22
-msgid "Show alternative login provider buttons on the password \"Sign Up\" page"
+msgid ""
+"Show alternative login provider buttons on the password \"Sign Up\" page"
msgstr "Mostrar botones de login alternativos en la página de registro"
#: conf/login_providers.py:31
msgid "Always display local login form and hide \"Askbot\" button."
-msgstr "Mostrar siempre el formulario de login local y esconder el botón de Askbot"
+msgstr ""
+"Mostrar siempre el formulario de login local y esconder el botón de Askbot"
#: conf/login_providers.py:40
msgid "Activate to allow login with self-hosted wordpress site"
-msgstr "Activar para permitir hacer login con un sitio wordpress en hosting propio"
+msgstr ""
+"Activar para permitir hacer login con un sitio wordpress en hosting propio"
#: conf/login_providers.py:41
msgid ""
"to activate this feature you must fill out the wordpress xml-rpc setting "
"bellow"
-msgstr "para activar esta característica debes rellenar la configuración de wordpress xml-rpc de abajo"
+msgstr ""
+"para activar esta característica debes rellenar la configuración de "
+"wordpress xml-rpc de abajo"
#: conf/login_providers.py:50
msgid ""
-"Fill it with the wordpress url to the xml-rpc, normally "
-"http://mysite.com/xmlrpc.php"
-msgstr "Introducir la url de xml-rpc de wordpress, normalmente http://misitio.com/xmlrpc.php"
+"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/"
+"xmlrpc.php"
+msgstr ""
+"Introducir la url de xml-rpc de wordpress, normalmente http://misitio.com/"
+"xmlrpc.php"
#: conf/login_providers.py:51
msgid ""
"To enable, go to Settings->Writing->Remote Publishing and check the box for "
"XML-RPC"
-msgstr "Para activar, ve a Configuracion-> Escritura-> Publicación Remota y comprueba la caja de XML-RPC"
+msgstr ""
+"Para activar, ve a Configuracion-> Escritura-> Publicación Remota y "
+"comprueba la caja de XML-RPC"
#: conf/login_providers.py:60
msgid "Upload your icon"
@@ -1132,7 +1332,9 @@ msgstr "Activar el login de %(provider)s"
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
"need to be set in the \"External keys\" section"
-msgstr "Nota: para activar el login de %(provider)s necesitas configurar algunos parámetros adicionales en la sección \"Llaves externas\""
+msgstr ""
+"Nota: para activar el login de %(provider)s necesitas configurar algunos "
+"parámetros adicionales en la sección \"Llaves externas\""
#: conf/markup.py:15
msgid "Markup in posts"
@@ -1144,11 +1346,15 @@ msgstr "Activar marcas de código"
#: conf/markup.py:43
msgid ""
-"If checked, underscore characters will not trigger italic or bold formatting"
-" - bold and italic text can still be marked up with asterisks. Note that "
+"If checked, underscore characters will not trigger italic or bold formatting "
+"- bold and italic text can still be marked up with asterisks. Note that "
"\"MathJax support\" implicitly turns this feature on, because underscores "
"are heavily used in LaTeX input."
-msgstr "Si está marcado, los guiones bajos no llevarán letra itálica o negrita, aunque podrán seguir marcándose con asteriscos. Nota: el \"Soporte MathJax\" activa esta característica automáticamente, porque los guiones bajos son muy usados por LaTeX."
+msgstr ""
+"Si está marcado, los guiones bajos no llevarán letra itálica o negrita, "
+"aunque podrán seguir marcándose con asteriscos. Nota: el \"Soporte MathJax"
+"\" activa esta característica automáticamente, porque los guiones bajos son "
+"muy usados por LaTeX."
#: conf/markup.py:58
msgid "Mathjax support (rendering of LaTeX)"
@@ -1159,7 +1365,9 @@ msgstr "Soporte para Mathjax (generado de LaTeX)"
msgid ""
"If you enable this feature, <a href=\"%(url)s\">mathjax</a> must be "
"installed on your server in its own directory."
-msgstr "Si activas esta característica, <a href=\"%(url)s\">mathjax</a> será instalado en tu servidor con su propio directorio."
+msgstr ""
+"Si activas esta característica, <a href=\"%(url)s\">mathjax</a> será "
+"instalado en tu servidor con su propio directorio."
#: conf/markup.py:74
msgid "Base url of MathJax deployment"
@@ -1170,7 +1378,11 @@ msgid ""
"Note - <strong>MathJax is not included with askbot</strong> - you should "
"deploy it yourself, preferably at a separate domain and enter url pointing "
"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)"
-msgstr "Nota - <strong>MathJax no está incluido con askbot</strong> - debes activarlo tu mismo, preferiblemente en un dominio independiente y introduciendo una URL que apunte a la carpeta \"mathjax\" (por ejemplo: http://misitio.com/mathjax)"
+msgstr ""
+"Nota - <strong>MathJax no está incluido con askbot</strong> - debes "
+"activarlo tu mismo, preferiblemente en un dominio independiente y "
+"introduciendo una URL que apunte a la carpeta \"mathjax\" (por ejemplo: "
+"http://misitio.com/mathjax)"
#: conf/markup.py:91
msgid "Enable autolinking with specific patterns"
@@ -1178,9 +1390,11 @@ msgstr "Activar autoenlazado con cadenas específicas"
#: conf/markup.py:93
msgid ""
-"If you enable this feature, the application will be able to detect patterns"
-" and auto link to URLs"
-msgstr "Si activas esta característica, la aplicación podrá detectar cadenas y autoenlazar a URLs"
+"If you enable this feature, the application will be able to detect patterns "
+"and auto link to URLs"
+msgstr ""
+"Si activas esta característica, la aplicación podrá detectar cadenas y "
+"autoenlazar a URLs"
#: conf/markup.py:106
msgid "Regexes to detect the link patterns"
@@ -1193,7 +1407,12 @@ msgid ""
"The numbers captured by the pattern in the parentheses will be transferred "
"to the link url template. Please look up more information about regular "
"expressions elsewhere."
-msgstr "Introduce expresiones regulares validas para encontrar cadenas, una por linea. Por ejemplo, para detectar un error en la cadena #error123, utiliza la siguiente expresion: #bug(\\d+) Los numeros capturados entre parentesis seran enviados al enlace de la plantilla. Para conocer mas sobre las expresiones regulares consulta en internet."
+msgstr ""
+"Introduce expresiones regulares validas para encontrar cadenas, una por "
+"linea. Por ejemplo, para detectar un error en la cadena #error123, utiliza "
+"la siguiente expresion: #bug(\\d+) Los numeros capturados entre parentesis "
+"seran enviados al enlace de la plantilla. Para conocer mas sobre las "
+"expresiones regulares consulta en internet."
#: conf/markup.py:127
msgid "URLs for autolinking"
@@ -1203,11 +1422,18 @@ msgstr "Direcciones URL para autoenlazar"
msgid ""
"Here, please enter url templates for the patterns entered in the previous "
"setting, also one entry per line. <strong>Make sure that number of lines in "
-"this setting and the previous one are the same</strong> For example template"
-" https://bugzilla.redhat.com/show_bug.cgi?id=\\1 together with the pattern "
+"this setting and the previous one are the same</strong> For example template "
+"https://bugzilla.redhat.com/show_bug.cgi?id=\\1 together with the pattern "
"shown above and the entry in the post #123 will produce link to the bug 123 "
"in the redhat bug tracker."
-msgstr "Introduce aqui las direcciones URL de las plantillas para cada una de las cadenas que has introducido previamente, solo una entrada por cada linea de texto. <strong>Asegurate que el numero de lineas coincida con el anterior ajuste.</strong> Por ejemplo la plantilla https://bugzilla.redhat.com/show_bug.cgi?id=\\1 debe ir junto a la cadena que se muestra arriba en la entrada del post 123 y tendra como resultado un enlace al error 123 en el tracking de errores de Redhat."
+msgstr ""
+"Introduce aqui las direcciones URL de las plantillas para cada una de las "
+"cadenas que has introducido previamente, solo una entrada por cada linea de "
+"texto. <strong>Asegurate que el numero de lineas coincida con el anterior "
+"ajuste.</strong> Por ejemplo la plantilla https://bugzilla.redhat.com/"
+"show_bug.cgi?id=\\1 debe ir junto a la cadena que se muestra arriba en la "
+"entrada del post 123 y tendra como resultado un enlace al error 123 en el "
+"tracking de errores de Redhat."
#: conf/minimum_reputation.py:12
msgid "Karma thresholds"
@@ -1289,7 +1515,13 @@ msgstr "Eliminar rel=nofollow de la Pagina de Inicio"
msgid ""
"When a search engine crawler will see a rel=nofollow attribute on a link - "
"the link will not count towards the rank of the users personal site."
-msgstr "Cuando un motor de busqueda vea un rel=nofollow en un enlace - el enlace no sera tenido en cuenta para el ranking del sitio web del usuario"
+msgstr ""
+"Cuando un motor de busqueda vea un rel=nofollow en un enlace - el enlace no "
+"sera tenido en cuenta para el ranking del sitio web del usuario"
+
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
@@ -1341,11 +1573,13 @@ msgstr "Restar porque el dueño del post ha recibido un voto negativo"
#: conf/reputation_changes.py:128
msgid "Loss for owner of post that was flagged 3 times per same revision"
-msgstr "Restar porque el dueño del post fue denunciado 3 veces por el mismo motivo"
+msgstr ""
+"Restar porque el dueño del post fue denunciado 3 veces por el mismo motivo"
#: conf/reputation_changes.py:138
msgid "Loss for owner of post that was flagged 5 times per same revision"
-msgstr "Restar porque el dueño del post fue denunciado 5 veces por el mismo motivo"
+msgstr ""
+"Restar porque el dueño del post fue denunciado 5 veces por el mismo motivo"
#: conf/reputation_changes.py:148
msgid "Loss for post owner when upvote is canceled"
@@ -1367,7 +1601,12 @@ msgid ""
"When using this option (as well as the sidebar footer), please use the HTML "
"validation service to make sure that your input is valid and works well in "
"all browsers."
-msgstr "Utiliza este area para introducir el contenido en la parte superior de la columna lateral en formato HTML. Cuando utilices esta opcion (y tambien la de la columna del pie de pagina), por favor utiliza el servicio de validacion HTML para asegurarte de que tu codigo es valido y funciona en todos los navegadores."
+msgstr ""
+"Utiliza este area para introducir el contenido en la parte superior de la "
+"columna lateral en formato HTML. Cuando utilices esta opcion (y tambien la "
+"de la columna del pie de pagina), por favor utiliza el servicio de "
+"validacion HTML para asegurarte de que tu codigo es valido y funciona en "
+"todos los navegadores."
#: conf/sidebar_main.py:36
msgid "Show avatar block in sidebar"
@@ -1375,7 +1614,8 @@ msgstr "Mostrar avatar dentro de la columna lateral"
#: conf/sidebar_main.py:38
msgid "Uncheck this if you want to hide the avatar block from the sidebar "
-msgstr "Desmarca si quieres esconder el bloque del avatar de la columna lateral"
+msgstr ""
+"Desmarca si quieres esconder el bloque del avatar de la columna lateral"
#: conf/sidebar_main.py:49
msgid "Limit how many avatars will be displayed on the sidebar"
@@ -1389,7 +1629,9 @@ msgstr "Mostrar el selector de etiquetas en la columna lateral"
msgid ""
"Uncheck this if you want to hide the options for choosing interesting and "
"ignored tags "
-msgstr "Desmarcar si quieres esconder las opciones para elegir etiquetas interesantes o ignoradas"
+msgstr ""
+"Desmarcar si quieres esconder las opciones para elegir etiquetas "
+"interesantes o ignoradas"
#: conf/sidebar_main.py:72
msgid "Show tag list/cloud in sidebar"
@@ -1398,7 +1640,9 @@ msgstr "Mostrar las lista/nube de etiquetas en la columna lateral"
#: conf/sidebar_main.py:74
msgid ""
"Uncheck this if you want to hide the tag cloud or tag list from the sidebar "
-msgstr "Desmarcar si quieres esconder la lista/nube de etiquetas en la columna lateralq"
+msgstr ""
+"Desmarcar si quieres esconder la lista/nube de etiquetas en la columna "
+"lateralq"
#: conf/sidebar_main.py:85 conf/sidebar_profile.py:36
#: conf/sidebar_question.py:75
@@ -1408,11 +1652,15 @@ msgstr "Personalizar columna lateral del pie de pagina"
#: conf/sidebar_main.py:88 conf/sidebar_profile.py:39
#: conf/sidebar_question.py:78
msgid ""
-"Use this area to enter content at the BOTTOM of the sidebarin HTML format."
-" When using this option (as well as the sidebar header), please use the "
-"HTML validation service to make sure that your input is valid and works well"
-" in all browsers."
-msgstr "Utiliza este area para introducir contenido al final de la columna lateral en formato HTML. Cuando uses esta opcion (tambien en la columna lateral de la cabecera) utiliza el servicio de validacion de HTML para asegurarte que el codigo es valido y funciona bien en todos los navegadores."
+"Use this area to enter content at the BOTTOM of the sidebarin HTML format. "
+"When using this option (as well as the sidebar header), please use the HTML "
+"validation service to make sure that your input is valid and works well in "
+"all browsers."
+msgstr ""
+"Utiliza este area para introducir contenido al final de la columna lateral "
+"en formato HTML. Cuando uses esta opcion (tambien en la columna lateral de "
+"la cabecera) utiliza el servicio de validacion de HTML para asegurarte que "
+"el codigo es valido y funciona bien en todos los navegadores."
#: conf/sidebar_profile.py:12
msgid "User profile sidebar"
@@ -1438,7 +1686,9 @@ msgstr "Mostrar meta informacion en la columna lateral"
msgid ""
"Uncheck this if you want to hide the meta information about the question "
"(post date, views, last updated). "
-msgstr "Desmarcar si quieres esconder la meta informacion sobre la pregunta (fecha de envio, vistas, ultima actualizacion)"
+msgstr ""
+"Desmarcar si quieres esconder la meta informacion sobre la pregunta (fecha "
+"de envio, vistas, ultima actualizacion)"
#: conf/sidebar_question.py:62
msgid "Show related questions in sidebar"
@@ -1462,7 +1712,11 @@ msgid ""
"more suitable for the smaller communities, <strong>WARNING:</strong> your "
"current value for Minimum reputation, Bagde Settings and Vote Rules will be "
"changed after you modify this setting."
-msgstr "El modo \"autosuficiente\" disminuye la reputacion y algunas medallas, especialmente indicado para sitios pequeños, <strong> ATENCION</strong> tu valor actual de reputacion, medallas y votaciones sera modificado cuando cambies este ajuste."
+msgstr ""
+"El modo \"autosuficiente\" disminuye la reputacion y algunas medallas, "
+"especialmente indicado para sitios pequeños, <strong> ATENCION</strong> tu "
+"valor actual de reputacion, medallas y votaciones sera modificado cuando "
+"cambies este ajuste."
#: conf/site_settings.py:12
msgid "URLS, keywords & greetings"
@@ -1488,27 +1742,27 @@ msgstr "Descripcion del sitio para los motores de busqueda"
msgid "Short name for your Q&A forum"
msgstr "Nombre corto para tu foro"
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr "Direccion URL base para el sitio, debe comenzar por http o https"
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr "Marca para activar el saludo a los usuarios anonimos"
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr "Texto mostrado en el mensaje de agradecimiento a los usuarios anonimos"
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr "Utiliza HTML para formatear el mensaje"
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "Direccion URL de contacto"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr "Si lo dejas en blanco, se utilizara un formulario de contacto simple"
@@ -1631,7 +1885,9 @@ msgstr "Logotipo del sitio"
#: conf/skin_general_settings.py:25
msgid "To change the logo, select new file, then submit this whole form."
-msgstr "Para cambiar el logotipo, selecciona un nuevo fichero y envia el formulario completo"
+msgstr ""
+"Para cambiar el logotipo, selecciona un nuevo fichero y envia el formulario "
+"completo"
#: conf/skin_general_settings.py:37
msgid "Show logo"
@@ -1641,7 +1897,9 @@ msgstr "Mostrar logo"
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
-msgstr "Marca si quieres mostrar el logo en la cabecera o desmarca si no quieres mostrar el logo en el sitio por defecto"
+msgstr ""
+"Marca si quieres mostrar el logo en la cabecera o desmarca si no quieres "
+"mostrar el logo en el sitio por defecto"
#: conf/skin_general_settings.py:51
msgid "Site favicon"
@@ -1650,10 +1908,13 @@ msgstr "Favicon del sitio"
#: conf/skin_general_settings.py:53
#, python-format
msgid ""
-"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the"
-" browser user interface. Please find more information about favicon at <a "
+"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
+"browser user interface. Please find more information about favicon at <a "
"href=\"%(favicon_info_url)s\">this page</a>."
-msgstr "Icono pequeño de 16x16 o 32x32 pixels que se utiliza para distinguir tu sitio en el navegador del usuario. Puedes encontrar mas informacion sobre el favicon en <a href=\"%(favicon_info_url)s\">esta pagina</a>."
+msgstr ""
+"Icono pequeño de 16x16 o 32x32 pixels que se utiliza para distinguir tu "
+"sitio en el navegador del usuario. Puedes encontrar mas informacion sobre el "
+"favicon en <a href=\"%(favicon_info_url)s\">esta pagina</a>."
#: conf/skin_general_settings.py:69
msgid "Password login button"
@@ -1661,20 +1922,25 @@ msgstr "Boton de Password "
#: conf/skin_general_settings.py:71
msgid ""
-"An 88x38 pixel image that is used on the login screen for the password login"
-" button."
-msgstr "Imagen de 88x38 que se usa en la pantalla de login para el boton de password"
+"An 88x38 pixel image that is used on the login screen for the password login "
+"button."
+msgstr ""
+"Imagen de 88x38 que se usa en la pantalla de login para el boton de password"
#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
-msgstr "Mostrar todas las funciones del interfaz de usuario a todos los usuarios"
+msgstr ""
+"Mostrar todas las funciones del interfaz de usuario a todos los usuarios"
#: conf/skin_general_settings.py:86
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 "Si esta marcada, se mostrara todas las funciones del foro a todos los usuarios, independientemente de su reputacion. Sin embargo a pesar de que se muestran, no se podran utilizar."
+"reputation. However to use those functions, moderation rules, reputation and "
+"other limits will still apply."
+msgstr ""
+"Si esta marcada, se mostrara todas las funciones del foro a todos los "
+"usuarios, independientemente de su reputacion. Sin embargo a pesar de que se "
+"muestran, no se podran utilizar."
#: conf/skin_general_settings.py:101
msgid "Select skin"
@@ -1692,13 +1958,22 @@ msgstr "Personalizar una parte de la etiqueta <HEAD>"
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
-"of the HTML output, where elements such as &lt;script&gt;, &lt;link&gt;, "
-"&lt;meta&gt; may be added. Please, keep in mind that adding external "
-"javascript to the &lt;HEAD&gt; is not recommended because it slows loading "
-"of the pages. Instead, it will be more efficient to place links to the "
-"javascript files into the footer. <strong>Note:</strong> if you do use this "
-"setting, please test the site with the W3C HTML validator service."
-msgstr "<strong>Para usar esta opción</strong>, marca \"Personalizar la etiqueta &lt;HEAD&gt;\" arriba. El contenido de esta caja se insertará en la sección &lt;HEAD&gt; del HTML, donde algunos elementos como &lt;script&gt;, &lt;link&gt;, &lt;meta&gt; podrian ser añadidos. Por favor, ten en cuenta que no es recomendable añadir un javascript externo al &lt;HEAD&gt; porque retarda la carga de las páginas. En vez de esto, sería más eficiente poner los enlaces de javascript en el pie de página. <strong>Nota:</strong> si utilizas este ajuste, por favor comprueba el sitio con el servicio de validación de HTML del W3C."
+"of the HTML output, where elements such as &lt;script&gt;, &lt;link&gt;, &lt;"
+"meta&gt; may be added. Please, keep in mind that adding external javascript "
+"to the &lt;HEAD&gt; is not recommended because it slows loading of the "
+"pages. Instead, it will be more efficient to place links to the javascript "
+"files into the footer. <strong>Note:</strong> if you do use this setting, "
+"please test the site with the W3C HTML validator service."
+msgstr ""
+"<strong>Para usar esta opción</strong>, marca \"Personalizar la etiqueta &lt;"
+"HEAD&gt;\" arriba. El contenido de esta caja se insertará en la sección &lt;"
+"HEAD&gt; del HTML, donde algunos elementos como &lt;script&gt;, &lt;"
+"link&gt;, &lt;meta&gt; podrian ser añadidos. Por favor, ten en cuenta que no "
+"es recomendable añadir un javascript externo al &lt;HEAD&gt; porque retarda "
+"la carga de las páginas. En vez de esto, sería más eficiente poner los "
+"enlaces de javascript en el pie de página. <strong>Nota:</strong> si "
+"utilizas este ajuste, por favor comprueba el sitio con el servicio de "
+"validación de HTML del W3C."
#: conf/skin_general_settings.py:145
msgid "Custom header additions"
@@ -1706,12 +1981,19 @@ msgstr "Personalizaciones de Cabecera adicionales"
#: conf/skin_general_settings.py:147
msgid ""
-"Header is the bar at the top of the content that contains user info and site"
-" links, and is common to all pages. Use this area to enter contents of the "
+"Header is the bar at the top of the content that contains user info and site "
+"links, and is common to all pages. Use this area to enter contents of the "
"headerin the HTML format. When customizing the site header (as well as "
"footer and the HTML &lt;HEAD&gt;), use the HTML validation service to make "
"sure that your input is valid and works well in all browsers."
-msgstr "La cabecera es la barra superior de contenido donde se encuentran la información del usuario y los enlaces del sitio y es común a todas las páginas. Utiliza este área para introducir contenido en la cabecera en formato HTML, Cuando personalizas la cabecera del sitio (y también el pie de la página y la etiqueta <HEAD>) debes utilizar el servicio de validación de HTML para asegurarte de que tu código es válido y funciona bien en todos los navegadores."
+msgstr ""
+"La cabecera es la barra superior de contenido donde se encuentran la "
+"información del usuario y los enlaces del sitio y es común a todas las "
+"páginas. Utiliza este área para introducir contenido en la cabecera en "
+"formato HTML, Cuando personalizas la cabecera del sitio (y también el pie de "
+"la página y la etiqueta <HEAD>) debes utilizar el servicio de validación de "
+"HTML para asegurarte de que tu código es válido y funciona bien en todos los "
+"navegadores."
#: conf/skin_general_settings.py:162
msgid "Site footer mode"
@@ -1721,7 +2003,9 @@ msgstr "Modo Pie de la Página"
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
-msgstr "El pie es la parte inferior del contenido, y es común a todas las páginas. Puedes desactivarlo, personalizarlo o utilizar el pie por defecto."
+msgstr ""
+"El pie es la parte inferior del contenido, y es común a todas las páginas. "
+"Puedes desactivarlo, personalizarlo o utilizar el pie por defecto."
#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
@@ -1734,7 +2018,14 @@ msgid ""
"footer in the HTML format. When customizing the site footer (as well as the "
"header and HTML &lt;HEAD&gt;), use the HTML validation service to make sure "
"that your input is valid and works well in all browsers."
-msgstr "<strong>Para activar esta función</strong>, por favor selecciona la opción 'personalizar'en el modo \"Pie de la Página\" de arriba. Utiliza este área para introducir contenidos en el pie de página en formato HTML. Cuando personalices el pie de página (y también la cabecera de la página y la etiqueta <HEAD>) debes utilizar el servicio de validación de HTML para asegurarte de que tu código es válido y funciona bien en todos los navegadores."
+msgstr ""
+"<strong>Para activar esta función</strong>, por favor selecciona la opción "
+"'personalizar'en el modo \"Pie de la Página\" de arriba. Utiliza este área "
+"para introducir contenidos en el pie de página en formato HTML. Cuando "
+"personalices el pie de página (y también la cabecera de la página y la "
+"etiqueta <HEAD>) debes utilizar el servicio de validación de HTML para "
+"asegurarte de que tu código es válido y funciona bien en todos los "
+"navegadores."
#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
@@ -1744,7 +2035,9 @@ msgstr "Aplicar hoja de estilo propio (CSS)"
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
-msgstr "Comprobar si quieres cambiar de apariencia de tu formulario añadiendo estilos personalizados (por favor leer el siguiente punto)"
+msgstr ""
+"Comprobar si quieres cambiar de apariencia de tu formulario añadiendo "
+"estilos personalizados (por favor leer el siguiente punto)"
#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
@@ -1754,10 +2047,17 @@ msgstr "Personalizar hoja de estilos (CSS)"
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
-"default style sheet rules. The custom style sheet will be served dynamically"
-" at url \"&lt;forum url&gt;/custom.css\", where the \"&lt;forum url&gt; part"
-" depends (default is empty string) on the url configuration in your urls.py."
-msgstr "<strong>Para utilizar esta función</strong>, comprueba \"Aplicar una hoja de estilo propio con CSS\" de arriba. El código CSS añadido en esta ventana se aplicarán después del código CSS por defecto de la págna. Las hojas de estilo personalizadas se servirán dinámicamente desde la dirección url \"&lt;forum url&gt;/custom.css\", donde las parte del \"&lt;forum url&gt; depende de la url y la configuración (por defecto es un carácter vacío) de los ajustes en tu fichero urls.py."
+"default style sheet rules. The custom style sheet will be served dynamically "
+"at url \"&lt;forum url&gt;/custom.css\", where the \"&lt;forum url&gt; part "
+"depends (default is empty string) on the url configuration in your urls.py."
+msgstr ""
+"<strong>Para utilizar esta función</strong>, comprueba \"Aplicar una hoja de "
+"estilo propio con CSS\" de arriba. El código CSS añadido en esta ventana se "
+"aplicarán después del código CSS por defecto de la págna. Las hojas de "
+"estilo personalizadas se servirán dinámicamente desde la dirección url \"&lt;"
+"forum url&gt;/custom.css\", donde las parte del \"&lt;forum url&gt; depende "
+"de la url y la configuración (por defecto es un carácter vacío) de los "
+"ajustes en tu fichero urls.py."
#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
@@ -1765,7 +2065,8 @@ msgstr "Añadir javascript personalizado"
#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
-msgstr "Marcar para activar el javascript que puedes introducir en el siguiente campo"
+msgstr ""
+"Marcar para activar el javascript que puedes introducir en el siguiente campo"
#: conf/skin_general_settings.py:243
msgid "Custom javascript"
@@ -1773,14 +2074,21 @@ msgstr "Personalizar javascript"
#: conf/skin_general_settings.py:245
msgid ""
-"Type or paste plain javascript that you would like to run on your site. Link"
-" to the script will be inserted at the bottom of the HTML output and will be"
-" served at the url \"&lt;forum url&gt;/custom.js\". Please, bear in mind "
-"that your javascript code may break other functionalities of the site and "
-"that the behavior may not be consistent across different browsers "
-"(<strong>to enable your custom code</strong>, check \"Add custom "
-"javascript\" option above)."
-msgstr "Escribe o pega codigo javascript que te gustaría ejecutar en tu sitio. El enlace al javascript será insertado en la parte inferior del HTML y será servida desde la dirección \"&lt;forum url&gt;/custom.js\". Por favor, ten en cuenta que tu código javascript puede colapsar ciertas funcionalidades del sitio y que la respuesta en diferentes navegadores puede no ser consistente (<strong>para activar el modo personalizar</strong>, marca la casilla \"Añadir javascript personalizado\" de arriba)"
+"Type or paste plain javascript that you would like to run on your site. Link "
+"to the script will be inserted at the bottom of the HTML output and will be "
+"served at the url \"&lt;forum url&gt;/custom.js\". Please, bear in mind that "
+"your javascript code may break other functionalities of the site and that "
+"the behavior may not be consistent across different browsers (<strong>to "
+"enable your custom code</strong>, check \"Add custom javascript\" option "
+"above)."
+msgstr ""
+"Escribe o pega codigo javascript que te gustaría ejecutar en tu sitio. El "
+"enlace al javascript será insertado en la parte inferior del HTML y será "
+"servida desde la dirección \"&lt;forum url&gt;/custom.js\". Por favor, ten "
+"en cuenta que tu código javascript puede colapsar ciertas funcionalidades "
+"del sitio y que la respuesta en diferentes navegadores puede no ser "
+"consistente (<strong>para activar el modo personalizar</strong>, marca la "
+"casilla \"Añadir javascript personalizado\" de arriba)"
#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
@@ -1792,7 +2100,8 @@ msgstr "Se cambiará automáticamente pero lo puedes modificar si es necesario"
#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
-msgstr "Hash para actualizar el número de revisión de los archivos automáticamente"
+msgstr ""
+"Hash para actualizar el número de revisión de los archivos automáticamente"
#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
@@ -1828,12 +2137,15 @@ msgstr "Anti spam Akismet"
#: conf/spam_and_moderation.py:18
msgid "Enable Akismet spam detection(keys below are required)"
-msgstr "Activar filtro anti spam Akismet (introducir abajo las llaves requeridas)"
+msgstr ""
+"Activar filtro anti spam Akismet (introducir abajo las llaves requeridas)"
#: conf/spam_and_moderation.py:21
#, python-format
msgid "To get an Akismet key please visit <a href=\"%(url)s\">Akismet site</a>"
-msgstr "Para obtener una llave de Akismet por favor, visita <a href=\"%(url)s\">Akismet</a>"
+msgstr ""
+"Para obtener una llave de Akismet por favor, visita <a href=\"%(url)s"
+"\">Akismet</a>"
#: conf/spam_and_moderation.py:31
msgid "Akismet key for spam detection"
@@ -1890,21 +2202,27 @@ msgstr "Avatar por defecto para los usuarios"
#: conf/user_settings.py:70
msgid ""
"To change the avatar image, select new file, then submit this whole form."
-msgstr "Para cambiar la imagen del avatar, selecciona una nueva imagen, luego enviala desde este formulario."
+msgstr ""
+"Para cambiar la imagen del avatar, selecciona una nueva imagen, luego "
+"enviala desde este formulario."
#: conf/user_settings.py:83
msgid "Use automatic avatars from gravatar.com"
msgstr "Utilizar los avatars automaticos de gravatar.com"
#: conf/user_settings.py:85
-#, python-format
msgid ""
"Check this option if you want to allow the use of gravatar.com for avatars. "
"Please, note that this feature might take about 10 minutes to become fully "
"effective. You will have to enable uploaded avatars as well. For more "
-"information, please visit <a href=\"http://askbot.org/doc/optional-"
-"modules.html#uploaded-avatars\">this page</a>."
-msgstr "Marca esta opcion si quieres permitir el uso de gravatar.com para los avatares. Por favor, ten en cuenta que este ajuste puede tardar 10 minutos para que sea 100%% operativa. Deberas activar tambien la subida de avatares. Para mas informacion visita <a href=\"http://askbot.org/doc/optional-modules.html#uploaded-avatars\">esta pagina</a>."
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+"Marca esta opcion si quieres permitir el uso de gravatar.com para los "
+"avatares. Por favor, ten en cuenta que este ajuste puede tardar 10 minutos "
+"para que sea 100%% operativa. Deberas activar tambien la subida de avatares. "
+"Para mas informacion visita <a href=\"http://askbot.org/doc/optional-"
+"modules.html#uploaded-avatars\">esta pagina</a>."
#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
@@ -1915,7 +2233,10 @@ msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
-msgstr "Esta opción te permite configurar por defecto el tipo de avatar para emails sin asociación a Gravatar. Para más información, visita <a href=\"http://en.gravatar.com/site/implement/images/\">esta página</a>"
+msgstr ""
+"Esta opción te permite configurar por defecto el tipo de avatar para emails "
+"sin asociación a Gravatar. Para más información, visita <a href=\"http://en."
+"gravatar.com/site/implement/images/\">esta página</a>"
#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
@@ -1957,7 +2278,9 @@ msgstr "Número de denuncias necesarias para borrar los posts automáticamente"
msgid ""
"Minimum days to accept an answer, if it has not been accepted by the "
"question poster"
-msgstr "Mínimo de días para aceptar una respuesta, si no ha sido aceptada por el que envió la pregunta"
+msgstr ""
+"Mínimo de días para aceptar una respuesta, si no ha sido aceptada por el que "
+"envió la pregunta"
#: conf/widgets.py:13
msgid "Embeddable widgets"
@@ -1970,11 +2293,16 @@ msgstr "Número de preguntas para mostrar"
#: conf/widgets.py:28
msgid ""
"To embed the widget, add the following code to your site (and fill in "
-"correct base url, preferred tags, width and height):<iframe "
-"src=\"{{base_url}}/widgets/questions?tags={{comma-separated-tags}}\" "
-"width=\"100%\" height=\"300\"scrolling=\"no\"><p>Your browser does not "
-"support iframes.</p></iframe>"
-msgstr "Para insertar el widget, añade el siguiente código a tu sitio (y completa la dirección url base, las etiquetas preferidas, el ancho y el alto):<iframe src=\"{{base_url}}/widgets/questions?tags={{comma-separated-tags}}\" width=\"100%\" height=\"300\"scrolling=\"no\"><p>Tu navegador no soporta iframes.</p></iframe>"
+"correct base url, preferred tags, width and height):<iframe src="
+"\"{{base_url}}/widgets/questions?tags={{comma-separated-tags}}\" width=\"100%"
+"\" height=\"300\"scrolling=\"no\"><p>Your browser does not support iframes.</"
+"p></iframe>"
+msgstr ""
+"Para insertar el widget, añade el siguiente código a tu sitio (y completa la "
+"dirección url base, las etiquetas preferidas, el ancho y el alto):<iframe "
+"src=\"{{base_url}}/widgets/questions?tags={{comma-separated-tags}}\" width="
+"\"100%\" height=\"300\"scrolling=\"no\"><p>Tu navegador no soporta iframes.</"
+"p></iframe>"
#: conf/widgets.py:73
msgid "CSS for the questions widget"
@@ -2024,325 +2352,339 @@ msgstr "spam o publicidad"
msgid "too localized"
msgstr "demasiado localizada"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "nuevas"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "viejas"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "activa"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "inactiva"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "lo más caliente"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "lo más frío"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "lo más votado"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "lo menos votado"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "relevantes"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "todos"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "sin contestar"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "favorito"
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr "lista"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr "nube"
-#: const/__init__.py:73
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "la pregunta no tiene respuestas"
-#: const/__init__.py:74
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "la pregunta no tiene respuestas aceptadas"
-#: const/__init__.py:119
+#: const/__init__.py:125
msgid "asked a question"
msgstr "hizo una pregunta"
-#: const/__init__.py:120
+#: const/__init__.py:126
msgid "answered a question"
msgstr "contestó una pregunta"
-#: const/__init__.py:121
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "pregunta comentada"
-#: const/__init__.py:122
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "respuesta comentada"
-#: const/__init__.py:123
+#: const/__init__.py:129
msgid "edited question"
msgstr "pregunta editada"
-#: const/__init__.py:124
+#: const/__init__.py:130
msgid "edited answer"
msgstr "respuesta editada"
-#: const/__init__.py:125
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "recibió un trofeo"
-#: const/__init__.py:126
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "la mejor respuesta fue marcada"
-#: const/__init__.py:127
+#: const/__init__.py:133
msgid "upvoted"
msgstr "voto positivo"
-#: const/__init__.py:128
+#: const/__init__.py:134
msgid "downvoted"
msgstr "voto negativo"
-#: const/__init__.py:129
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "voto cancelado"
-#: const/__init__.py:130
+#: const/__init__.py:136
msgid "deleted question"
msgstr "pregunta eliminada"
-#: const/__init__.py:131
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "respuesta eliminada"
-#: const/__init__.py:132
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "marcado como ofensivo"
-#: const/__init__.py:133
+#: const/__init__.py:139
msgid "updated tags"
msgstr "etiquetas actualizadas"
-#: const/__init__.py:134
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "favorito seleccionado"
-#: const/__init__.py:135
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "perfil de usuario completado"
-#: const/__init__.py:136
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "actualizaciones enviadas al usuario"
-#: const/__init__.py:139
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr "enviado recordatorio sobre preguntas no contestadas"
-#: const/__init__.py:143
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr "recordatorio para aceptar la mejor respuesta enviada"
-#: const/__init__.py:145
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "mencionado en el post"
-#: const/__init__.py:196
-msgid "question_answered"
-msgstr "pregunta respondida"
-
-#: const/__init__.py:197
-msgid "question_commented"
-msgstr "pregunta comentada"
-
-#: const/__init__.py:198
-msgid "answer_commented"
-msgstr "respuesta_ comentada"
+#: const/__init__.py:202
+#, fuzzy
+msgid "answered question"
+msgstr "contestó una pregunta"
-#: const/__init__.py:199
-msgid "answer_accepted"
-msgstr "respuesta_aceptada"
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "respuesta editada"
-#: const/__init__.py:203
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[cerrado]"
-#: const/__init__.py:204
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[eliminado]"
-#: const/__init__.py:205 views/readers.py:555
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "versión inicial"
-#: const/__init__.py:206
+#: const/__init__.py:212
msgid "retagged"
msgstr "re-etiquetado"
-#: const/__init__.py:214
+#: const/__init__.py:220
msgid "off"
msgstr "cerrado"
-#: const/__init__.py:215
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "excluir las ignoradas"
-#: const/__init__.py:216
+#: const/__init__.py:222
msgid "only selected"
msgstr "solo seleccionadas"
-#: const/__init__.py:220
+#: const/__init__.py:226
msgid "instantly"
msgstr "en el momento"
-#: const/__init__.py:221
+#: const/__init__.py:227
msgid "daily"
msgstr "diario"
-#: const/__init__.py:222
+#: const/__init__.py:228
msgid "weekly"
msgstr "semanal"
-#: const/__init__.py:223
+#: const/__init__.py:229
msgid "no email"
msgstr "sin emails"
-#: const/__init__.py:230
+#: const/__init__.py:236
msgid "identicon"
msgstr "identicon"
-#: const/__init__.py:231
+#: const/__init__.py:237
msgid "mystery-man"
msgstr "mystery-man"
-#: const/__init__.py:232
+#: const/__init__.py:238
msgid "monsterid"
msgstr "monsterid"
-#: const/__init__.py:233
+#: const/__init__.py:239
msgid "wavatar"
msgstr "wavatar"
-#: const/__init__.py:234
+#: const/__init__.py:240
msgid "retro"
msgstr "retro"
-#: const/__init__.py:281 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "oro"
-#: const/__init__.py:282 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "plata"
-#: const/__init__.py:283 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "bronce"
-#: const/__init__.py:295
+#: const/__init__.py:301
msgid "None"
msgstr "ninguno"
-#: const/__init__.py:296
+#: const/__init__.py:302
msgid "Gravatar"
msgstr "Gravatar"
-#: const/__init__.py:297
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr "Avatar subido"
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr "preguntas más relevantes"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr "haz click para ver las preguntas más relevantes"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "relevancia"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "haz click para ver las preguntas más antiguas"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "fecha"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "haz click para ver las preguntas más recientes"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "haz click para ver las preguntas actualizadas más recientes"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "actividad"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "haz click para ver las preguntas más recientes"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr "haz click para ver las preguntas menos contestadas"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "respuestas"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr "haz click para ver las preguntas más respondidas"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "haz click para ver las preguntas menos votadas"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "votos"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "haz click para ver las preguntas más votadas"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
-msgstr "Bienvenido! Por favor, configura tu email (importante!) en tu perfil y elige tu nombre de usuario si es necesario."
+msgstr ""
+"Bienvenido! Por favor, configura tu email (importante!) en tu perfil y elige "
+"tu nombre de usuario si es necesario."
#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
@@ -2382,7 +2724,9 @@ msgstr "Contraseña actual"
msgid ""
"Old password is incorrect. Please enter the correct "
"password."
-msgstr "La contraseña antigua es incorrecta. Por favor ingrese la contraseña correcta."
+msgstr ""
+"La contraseña antigua es incorrecta. Por favor ingrese "
+"la contraseña correcta."
#: deps/django_authopenid/forms.py:399
msgid "Sorry, we don't have this email address in the database"
@@ -2393,8 +2737,9 @@ msgid "Your user name (<i>required</i>)"
msgstr "Tu nombre de usuario (<i>obligatorio</i>)"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "lo siento, no existe el nombre de usuario"
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "los sentimos, no hay usuarios con este nombre"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
@@ -2435,7 +2780,7 @@ msgid "%(site)s user name and password"
msgstr "usuario y contraseña de %(site)s"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "Crear una cuenta protegida con contraseña"
@@ -2495,7 +2840,9 @@ msgstr "Cambiar la contraseña de %(provider)s"
#: deps/django_authopenid/util.py:612
#, python-format
msgid "Click to see if your %(provider)s signin still works for %(site_name)s"
-msgstr "Haz click para ver si el registro de tu %(provider)s sigue funcionando para %(site_name)s "
+msgstr ""
+"Haz click para ver si el registro de tu %(provider)s sigue funcionando para "
+"%(site_name)s "
#: deps/django_authopenid/util.py:621
#, python-format
@@ -2522,71 +2869,77 @@ msgstr "Regístrate con la cuenta de %(provider)s"
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID %(openid_url)s incorrecto"
-#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:412
-#: deps/django_authopenid/views.py:440
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
-msgstr "Lo sentimos, hay problemas de conexion con %(provider)s, por favor intenta de nuevo o utiliza otro proveedor."
+msgstr ""
+"Lo sentimos, hay problemas de conexion con %(provider)s, por favor intenta "
+"de nuevo o utiliza otro proveedor."
-#: deps/django_authopenid/views.py:362
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr "Nueva contraseña guardada"
-#: deps/django_authopenid/views.py:466
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr "La combinación de login y contraseña no es correcta"
-#: deps/django_authopenid/views.py:568
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr "Por favor elige cualquiera de los iconos de abajo para registrarte"
-#: deps/django_authopenid/views.py:570
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr "Se envio el correo para recuperación de cuenta"
-#: deps/django_authopenid/views.py:573
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr "Por favor añade uno o más métodos de login"
-#: deps/django_authopenid/views.py:575
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr "Si quieres, puedes añadir, eliminar o editar tus métodos de login"
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr "Por favor espera un momento, tu cuenta se ha recuperado, pero..."
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
-msgstr "Lo sentimos, la llave de recuperación de esta cuenta ha expirado o es inválida"
+msgstr ""
+"Lo sentimos, la llave de recuperación de esta cuenta ha expirado o es "
+"inválida"
-#: deps/django_authopenid/views.py:652
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr "El método de login de %(provider_name)s no existe"
-#: deps/django_authopenid/views.py:658
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr "Lo siento, se ha producido un error, inténtalo de nuevo."
-#: deps/django_authopenid/views.py:749
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr "Tu login de %(provider)s funciona correctamente"
-#: deps/django_authopenid/views.py:1060 deps/django_authopenid/views.py:1066
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
-msgstr "Tu email necesita validación. Encuentra más detalles <a id='validate_email_alert' href='%(details_url)s'>aqui</a>."
+msgstr ""
+"Tu email necesita validación. Encuentra más detalles <a "
+"id='validate_email_alert' href='%(details_url)s'>aqui</a>."
-#: deps/django_authopenid/views.py:1087
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr "Recupera la cuenta de %(site)s"
-#: deps/django_authopenid/views.py:1159
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr "Por favor, comprueba tu email y visita el enlace."
@@ -2631,7 +2984,7 @@ msgstr "Documentación"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:136
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Cambiar Contraseña"
@@ -2676,7 +3029,9 @@ msgstr "Los ajustes directos están desactivados para este sitio"
#: deps/livesettings/templates/livesettings/site_settings.html:44
msgid "All configuration options must be edited in the site settings.py file"
-msgstr "Todas las opciones de configuración deben editarse en el archivo settings.py del sitio"
+msgstr ""
+"Todas las opciones de configuración deben editarse en el archivo settings.py "
+"del sitio"
#: deps/livesettings/templates/livesettings/site_settings.html:66
#, python-format
@@ -2691,86 +3046,52 @@ msgstr "Expandir todo"
msgid "Congratulations, you are now an Administrator"
msgstr "Enhorabuena, eres Administrador"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr "Este comando puede ayudarte a migrar el sistema de autentificación de contraseñas LDAP creando un registro de asociación con cada cuenta de usaurio. Se supone que el user id de LDAP es el mismo que los usuarios registrados en el sitio. Antes de ejecutar este comando es necesario configurar los parámetros de LDAP en la sección \"Llaves externas\" de los ajustes del sitio."
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr "<p>Para preguntar por email, por favor:</p>\n<ul>\n <li>Formatea el asunto como: [Tag1; Tag2] Titulo de la pregunta</li>\n <li>Escribe los detalles de tu pregunta en el cuerpo del mensaje de email</li>\n</ul>\n<p>Nota: las etiquetas pueden ser más de una palabra y pueden estar separadas por una coma o un punto y coma</p>\n"
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr "<p>Lo sentimos, ha habido un error enviando tu pregunta, por favor, contacta con el administrador de %(site)s</p>"
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a "
-"href=\"%(url)s\">register first</a></p>"
-msgstr "<p>Lo sentimos, para enviar preguntas en %(site)s por email, por favor<a href=\"%(url)s\">regístrate primero</a></p>"
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr "<p>Lo sentimos, tu pregunta no puede ser enviada porque no existen suficiente privilegios en tu cuenta</p>"
-
-#: management/commands/send_accept_answer_reminders.py:56
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr "Aceptar la mejor respuesta para %(question_count)d de tus preguntas"
-#: management/commands/send_accept_answer_reminders.py:61
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr "Por favor, acepta la mejor respuesta para la pregunta:"
-#: management/commands/send_accept_answer_reminders.py:63
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr "Por favor, acepta la mejor respuesta para estas preguntas:"
-#: management/commands/send_email_alerts.py:413
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] "%(question_count)d pregunta actualizada de %(topics)s"
msgstr[1] "%(question_count)d preguntas actualizadas de %(topics)s"
-#: management/commands/send_email_alerts.py:423
+#: management/commands/send_email_alerts.py:425
#, python-format
-msgid "%(name)s, this is an update message header for %(num)d question"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
msgid_plural ""
-"%(name)s, this is an update message header for %(num)d questions"
-msgstr[0] "<p>Hola %(name)s,</p><p>Se ha actualizado la siguiente pregunta en el sitio:</p>"
-msgstr[1] "<p>Hola %(name)s,</p><p>Se han actualizado las siguientes %(num)d preguntas en el sitio:</p>"
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
+msgstr[0] ""
+msgstr[1] ""
-#: management/commands/send_email_alerts.py:440
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "nueva pregunta"
-#: management/commands/send_email_alerts.py:465
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
-msgstr "<p>Por favor, recuerda que siempre puedes <a href='%(email_settings_link)s'>adjustar</a> la frecuencia de las actualizaciones al email o desactivarlas completamente.<br/>Si piensas que este mensaje te ha llegado por error, por favor, envíalo al administrador del sitio a %(admin_email)s.</p><p>Saludos,</p>"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
+msgstr ""
-#: management/commands/send_unanswered_question_reminders.py:58
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2782,83 +3103,84 @@ msgstr[1] "%(question_count)d preguntas sin responder de %(topics)s"
msgid "Please log in to use %s"
msgstr "Por favor, haz log in para utilizar %s"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
-msgstr "Lo sentimos, no puedes aceptar o cancelar las mejores respuestas porque tu cuenta está bloqueada"
+msgstr ""
+"Lo sentimos, no puedes aceptar o cancelar las mejores respuestas porque tu "
+"cuenta está bloqueada"
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
-msgstr "Lo sentimos, no puedes aceptar o cancelar las mejores respuestas porque tu cuenta ha sido suspendida"
+msgstr ""
+"Lo sentimos, no puedes aceptar o cancelar las mejores respuestas porque tu "
+"cuenta ha sido suspendida"
-#: models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
-msgstr ">%(points)s puntos necesarios para aceptar o cancelar tu propia respuesta o tu propia pregunta"
+msgstr ""
+">%(points)s puntos necesarios para aceptar o cancelar tu propia respuesta o "
+"tu propia pregunta"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
-msgstr "Lo siento, sólo podrás aceptar esta pregunta después de %(will_be_able_at)s"
+msgstr ""
+"Lo siento, sólo podrás aceptar esta pregunta después de %(will_be_able_at)s"
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
-msgstr "Lo siento, sólo los moderadores o el autor de la pregunta %(username)s pueden aceptar o cancelar la mejor respuesta"
+msgstr ""
+"Lo siento, sólo los moderadores o el autor de la pregunta %(username)s "
+"pueden aceptar o cancelar la mejor respuesta"
-#: models/__init__.py:386
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "no se puede votar por sus propias publicaciones"
-#: models/__init__.py:389
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "Lo sentimos, tu cuenta ha sido bloqueada"
-#: models/__init__.py:394
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "Lo sentimos, tu cuenta ha sido suspendida"
-#: models/__init__.py:404
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ">%(points)s puntos requeridos para votar positivamente "
-#: models/__init__.py:410
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ">%(points)s puntos requeridos para votar negativamente"
-#: models/__init__.py:425
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "Lo sentimos, los usuarios bloqueados no pueden subir ficheros"
-#: models/__init__.py:426
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr "Lo sentimos, los usuarios suspendidos no pueden subir ficheros"
-#: models/__init__.py:428
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "Lo sentimos, subir ficheros requiere un karma mayor de %(min_rep)s"
-
-#: models/__init__.py:447 models/__init__.py:514 models/__init__.py:980
-msgid "blocked users cannot post"
-msgstr "Lo sentimos, tu cuenta parece estar bloqueada y no puedes enviar nuevos posts hasta que este problema se resuelva. Por favor, contacta con el administrador para llegar a una solución."
-
-#: models/__init__.py:448 models/__init__.py:983
-msgid "suspended users cannot post"
-msgstr "Lo sentimos, tu cuenta parece estar suspendida y no puedes enviar nuevos posts hasta que este problema se resuelva. Por favor, contacta con el administrador para llegar a una solución."
+msgid "sorry, file uploading requires karma >%(min_rep)s"
+msgstr ""
-#: models/__init__.py:475
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2866,330 +3188,403 @@ msgid ""
msgid_plural ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
"minutes from posting"
-msgstr[0] "Lo sentimos, los comentarios (a excepción del último) sólo se pueden editar al %(minutes)s minuto de enviar"
-msgstr[1] "Lo sentimos, los comentarios (a excepción del último) sólo se pueden editar a los %(minutes)s minutos de enviar"
-
-#: models/__init__.py:487
+msgstr[0] ""
+"Lo sentimos, los comentarios (a excepción del último) sólo se pueden editar "
+"al %(minutes)s minuto de enviar"
+msgstr[1] ""
+"Lo sentimos, los comentarios (a excepción del último) sólo se pueden editar "
+"a los %(minutes)s minutos de enviar"
+
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
-msgstr "Lo sentimos, pero sólo los dueños de los posts o los moderadores pueden editar comentarios"
+msgstr ""
+"Lo sentimos, pero sólo los dueños de los posts o los moderadores pueden "
+"editar comentarios"
-#: models/__init__.py:500
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
-msgstr "Lo sentimos, debido a que tu cuenta está suspendida no puedes comentar tus propios posts"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está suspendida no puedes comentar tus "
+"propios posts"
-#: models/__init__.py:504
+#: models/__init__.py:523
#, 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 "Lo sentimos, para comentar cualquier post se requiere un mínimo de %(min_rep)s de reputación. Aunque también puedes comentar tus propios posts y respuestas a tus preguntas."
+msgstr ""
+"Lo sentimos, para comentar cualquier post se requiere un mínimo de "
+"%(min_rep)s de reputación. Aunque también puedes comentar tus propios posts "
+"y respuestas a tus preguntas."
-#: models/__init__.py:532
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
-msgstr "Este post ha sido eliminado y puede ser visto sólo por los dueños de los posts, el administrador del sitio y los moderadores."
+msgstr ""
+"Este post ha sido eliminado y puede ser visto sólo por los dueños de los "
+"posts, el administrador del sitio y los moderadores."
-#: models/__init__.py:549
+#: models/__init__.py:570
msgid ""
-"Sorry, only moderators, site administrators and post owners can edit deleted"
-" posts"
-msgstr "Lo sentimos, sólo los moderadores, los administradores del sitio y los dueños de los comentarios pueden editar posts eliminados."
+"Sorry, only moderators, site administrators and post owners can edit deleted "
+"posts"
+msgstr ""
+"Lo sentimos, sólo los moderadores, los administradores del sitio y los "
+"dueños de los comentarios pueden editar posts eliminados."
-#: models/__init__.py:564
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
-msgstr "Lo sentimos, debido a que tu cuenta ha sido bloqueda, no se pueden editar los posts"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta ha sido bloqueda, no se pueden editar "
+"los posts"
-#: models/__init__.py:568
-msgid ""
-"Sorry, since your account is suspended you can edit only your own posts"
-msgstr "Lo sentimos, debido a que tu cuenta está suspendida sólo puedes editar tus propios posts"
+#: models/__init__.py:589
+msgid "Sorry, since your account is suspended you can edit only your own posts"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está suspendida sólo puedes editar tus "
+"propios posts"
-#: models/__init__.py:573
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
-msgstr "Lo sentimos, para editar los post de la wiki, se necesitan un mínimo de %(min_rep)s puntos de reputación "
+msgstr ""
+"Lo sentimos, para editar los post de la wiki, se necesitan un mínimo de "
+"%(min_rep)s puntos de reputación "
-#: models/__init__.py:580
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
-msgstr "Lo sentimos, para editar los post de otras personas, se necesitan un mínimo de %(min_rep)s puntos de reputación"
+msgstr ""
+"Lo sentimos, para editar los post de otras personas, se necesitan un mínimo "
+"de %(min_rep)s puntos de reputación"
-#: models/__init__.py:643
+#: models/__init__.py:664
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] "Lo sentimos, no puedes eliminar tus preguntas debido a que tiene una respuestas con votos positivos enviada por otro usuarios"
-msgstr[1] "Lo sentimos, no puedes eliminar tus preguntas debido a que tiene varias respuestas con votos positivos enviadas por otros usuarios"
-
-#: models/__init__.py:658
+msgstr[0] ""
+"Lo sentimos, no puedes eliminar tus preguntas debido a que tiene una "
+"respuestas con votos positivos enviada por otro usuarios"
+msgstr[1] ""
+"Lo sentimos, no puedes eliminar tus preguntas debido a que tiene varias "
+"respuestas con votos positivos enviadas por otros usuarios"
+
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
-msgstr "Lo sentimos, debido a que tu cuenta está bloqueada no puedes eliminar posts"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está bloqueada no puedes eliminar posts"
-#: models/__init__.py:662
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
-msgstr "Lo sentimos, debido a que tu cuenta está suspendida sólo puedes eliminar tus propios posts"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está suspendida sólo puedes eliminar tus "
+"propios posts"
-#: models/__init__.py:666
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
-msgstr "Lo sentimos, para eliminar los posts de otra gente, se necesita un mínimo de %(min_rep)s puntos de reputación"
+msgstr ""
+"Lo sentimos, para eliminar los posts de otra gente, se necesita un mínimo de "
+"%(min_rep)s puntos de reputación"
-#: models/__init__.py:686
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
-msgstr "Lo sentimos, debido a que tu cuenta está bloqueda no puedes cerrar las preguntas"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está bloqueda no puedes cerrar las "
+"preguntas"
-#: models/__init__.py:690
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
-msgstr "Lo sentimos, debido a que tu cuenta está suspendida no puedes cerrar preguntas"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está suspendida no puedes cerrar "
+"preguntas"
-#: models/__init__.py:694
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
-msgstr "Lo sentimos, para cerrar posts de otros usuarios, se necesita una reputación mínima de %(min_rep)s puntos"
+msgstr ""
+"Lo sentimos, para cerrar posts de otros usuarios, se necesita una reputación "
+"mínima de %(min_rep)s puntos"
-#: models/__init__.py:703
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
-msgstr "Lo sentimos, para cerrar tu propia pregunta, necesitas un mínimo de %(min_rep)s puntos de reputación"
+msgstr ""
+"Lo sentimos, para cerrar tu propia pregunta, necesitas un mínimo de "
+"%(min_rep)s puntos de reputación"
-#: models/__init__.py:727
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
-msgstr "Lo sentimos, sólo los administradores, moderadores y los dueños de los posts con reputación mayor de %(min_rep)s pueden reabrir las preguntas"
+msgstr ""
+"Lo sentimos, sólo los administradores, moderadores y los dueños de los posts "
+"con reputación mayor de %(min_rep)s pueden reabrir las preguntas"
-#: models/__init__.py:733
+#: models/__init__.py:754
#, python-format
msgid ""
-"Sorry, to reopen own question a minimum reputation of %(min_rep)s is "
-"required"
-msgstr "Lo sentimos, para reabrir una pregunta se necesita un mínimo de %(min_rep)s de puntos de reputación"
-
-#: models/__init__.py:753
-msgid "cannot flag message as offensive twice"
-msgstr "Has denunciado esta pregunta antes y no puedes hacerlo otra vez"
+"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
+msgstr ""
+"Lo sentimos, para reabrir una pregunta se necesita un mínimo de %(min_rep)s "
+"de puntos de reputación"
-#: models/__init__.py:758
-msgid "blocked users cannot flag posts"
-msgstr "Lo sentimos, debido a que tu cuenta está bloqueada no puedes denunciar posts como ofensivos"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
+msgstr ""
-#: models/__init__.py:760
-msgid "suspended users cannot flag posts"
-msgstr "Lo sentimos, debido a que tu cuenta está suspendida no puedes crear nuevos posts hasta que se resuelva este problema. Sin embargo, si puedes editar tus posts existentes. Por favor contacta con el administrador para llegar a una solución."
+#: models/__init__.py:783
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está bloqueada no puedes eliminar posts"
-#: models/__init__.py:762
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr "Lo sentimos, para denunciar posts como ofensivos es necesario tener un mínimo de %(min_rep)s puntos de reputación "
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
+msgstr ""
+"Lo sentimos, para re-etiquetar preguntas es necesario un mínimo de "
+"%(min_rep)s puntos de reputación"
-#: models/__init__.py:781
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "Lo siento, has alcanzado el número máximo de %(max_flags_per_day)s denuncias por día."
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:792
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr "no se puede eliminar una denuncia no existente"
-#: models/__init__.py:797
-msgid "blocked users cannot remove flags"
-msgstr "Lo sentimos, debido a que tu cuenta está bloqueada no puedes eliminar denuncias"
+#: models/__init__.py:833
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está bloqueada no puedes eliminar posts"
-#: models/__init__.py:799
-msgid "suspended users cannot remove flags"
-msgstr "Lo sentimos, tu cuenta ha sido suspendida y no puedes eliminar denuncias. Por favor, contacta con el administrador del sitio para llegar a una solución."
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:803
-#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
-msgstr[0] "Lo sentimos, para denunciar un post se necesira un mínimo de %(min_rep)d puntos de reputación"
-msgstr[1] "Lo sentimos, para denunciar un post se necesira un mínimo de %(min_rep)d puntos de reputación"
+#: models/__init__.py:843
+#, fuzzy, python-format
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgstr[0] ""
+"Lo sentimos, para re-etiquetar preguntas es necesario un mínimo de "
+"%(min_rep)s puntos de reputación"
+msgstr[1] ""
+"Lo sentimos, para re-etiquetar preguntas es necesario un mínimo de "
+"%(min_rep)s puntos de reputación"
-#: models/__init__.py:822
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr "no tienes permiso para eliminar todas las denuncias"
-#: models/__init__.py:823
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr "no existen denuncias para esta entrada"
-#: models/__init__.py:847
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
-msgstr "Lo sentimos, sólo los dueños de las preguntas, los administradores del sitio y los moderadores pueden re-etiquetar las preguntas eliminadas"
+msgstr ""
+"Lo sentimos, sólo los dueños de las preguntas, los administradores del sitio "
+"y los moderadores pueden re-etiquetar las preguntas eliminadas"
-#: models/__init__.py:854
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
-msgstr "Lo sentimos, debido a que tu cuenta está bloqueada no puedes re-etiquetar preguntas"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está bloqueada no puedes re-etiquetar "
+"preguntas"
-#: models/__init__.py:858
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
-msgstr "Lo sentimos, debido a que tu cuenta está suspendida, sólo puedes re-etiquetar tus propias preguntas"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está suspendida, sólo puedes re-"
+"etiquetar tus propias preguntas"
-#: models/__init__.py:862
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
-msgstr "Lo sentimos, para re-etiquetar preguntas es necesario un mínimo de %(min_rep)s puntos de reputación"
+msgstr ""
+"Lo sentimos, para re-etiquetar preguntas es necesario un mínimo de "
+"%(min_rep)s puntos de reputación"
-#: models/__init__.py:881
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
-msgstr "Lo sentimos, debido a que tu cuenta ha sido bloqueada no puedes borrar comentarios"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta ha sido bloqueada no puedes borrar "
+"comentarios"
-#: models/__init__.py:885
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
-msgstr "Lo sentimos, debido a que tu cuenta está suspendida sólo puedes borrar tus propios comentarios"
+msgstr ""
+"Lo sentimos, debido a que tu cuenta está suspendida sólo puedes borrar tus "
+"propios comentarios"
-#: models/__init__.py:889
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
-msgstr "Lo sentimos, para eliminar comentarios necesitas %(min_rep)s puntos de reputación "
+msgstr ""
+"Lo sentimos, para eliminar comentarios necesitas %(min_rep)s puntos de "
+"reputación "
-#: models/__init__.py:912
-msgid "cannot revoke old vote"
-msgstr "no puede revocar un voto viejo"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1387 utils/functions.py:78
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "el %(date)s"
-#: models/__init__.py:1389
+#: models/__init__.py:1471
msgid "in two days"
msgstr "en dos días"
-#: models/__init__.py:1391
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr "mañana"
-#: models/__init__.py:1393
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "en %(hr)d hora"
msgstr[1] "en %(hr)d horas"
-#: models/__init__.py:1395
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "en %(min)d minuto"
msgstr[1] "en %(min)d minutos"
-#: models/__init__.py:1396
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] "%(days)d día"
msgstr[1] "%(days)d días"
-#: models/__init__.py:1398
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
-msgstr "Los nuevos usuarios deben esperar %(days)s antes de poder responder a sus propias preguntas. Puedes enviar tu respuesta %(left)s"
+msgstr ""
+"Los nuevos usuarios deben esperar %(days)s antes de poder responder a sus "
+"propias preguntas. Puedes enviar tu respuesta %(left)s"
-#: models/__init__.py:1565 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "Anónimo"
-#: models/__init__.py:1661
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Administrador del sitio"
-#: models/__init__.py:1663
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Moderador"
-#: models/__init__.py:1665
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Usuario Suspendido"
-#: models/__init__.py:1667
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Usuario Bloqueado"
-#: models/__init__.py:1669
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Usuario Registrado"
-#: models/__init__.py:1671
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Usuario Visto"
-#: models/__init__.py:1673
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Usuario Aprobado"
-#: models/__init__.py:1782
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "el karma de %(username)s es %(reputation)s"
-#: models/__init__.py:1792
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] "una medalla de oro"
msgstr[1] "%(count)d medallas de oro"
-#: models/__init__.py:1799
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] "una medalla de plata"
msgstr[1] "%(count)d medallas de plata"
-#: models/__init__.py:1806
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "una medalla de bronce"
msgstr[1] "%(count)d medallas de bronce"
-#: models/__init__.py:1817
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s y %(item2)s"
-#: models/__init__.py:1821
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr "%(user)s tiene %(badges)s"
-#: models/__init__.py:2287
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr "\"%(title)s\""
-#: models/__init__.py:2424
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
-msgstr "Enhorabuena, has recibido una medalla '%(badge_name)s'. Puedes comprobarlo en <a href=\"%(user_profile)s\">tu perfil</a>."
+msgstr ""
+"Enhorabuena, has recibido una medalla '%(badge_name)s'. Puedes comprobarlo "
+"en <a href=\"%(user_profile)s\">tu perfil</a>."
-#: models/__init__.py:2626 views/commands.py:445
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr "Tu suscripción a la etiqueta se ha guardado, gracias!"
@@ -3344,7 +3739,8 @@ msgstr "Respuesta aceptada con %(num)s o más votos"
msgid ""
"Answered a question more than %(days)s days later with at least %(votes)s "
"votes"
-msgstr "Respondió una pregunta más de %(days)s después con al menos %(votes)s votos"
+msgstr ""
+"Respondió una pregunta más de %(days)s después con al menos %(votes)s votos"
#: models/badges.py:525
msgid "Necromancer"
@@ -3455,59 +3851,74 @@ msgstr "Experto"
msgid "Very active in one tag"
msgstr "Muy activo con una etiqueta"
-#: models/post.py:1056
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "Lo sentimos, esta pregunta se ha eliminado y no puedes acceder a ella"
-#: models/post.py:1072
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
-msgstr "Lo sentimos, la respuesta que estás buscando no se encuentra disponible, debido a que la pregunta de la que depende se ha eliminado"
+msgstr ""
+"Lo sentimos, la respuesta que estás buscando no se encuentra disponible, "
+"debido a que la pregunta de la que depende se ha eliminado"
-#: models/post.py:1079
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "Lo sentimos, esta respuesta ha sido eliminada y ya no está accesible"
-#: models/post.py:1095
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
-msgstr "Lo sentimos, el comentario que estás buscando ya no se encuentra accesible porque la pregunta de la que dependía se ha eliminado."
+msgstr ""
+"Lo sentimos, el comentario que estás buscando ya no se encuentra accesible "
+"porque la pregunta de la que dependía se ha eliminado."
-#: models/post.py:1102
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
-msgstr "Lo sentimos, el comentario que estás buscando ya no se encuentra accesible porque la respuesta de la que dependía se ha eliminado."
+msgstr ""
+"Lo sentimos, el comentario que estás buscando ya no se encuentra accesible "
+"porque la respuesta de la que dependía se ha eliminado."
-#: models/question.py:51
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" y \"%s\""
-#: models/question.py:54
+#: models/question.py:57
msgid "\" and more"
msgstr "\" y más"
-#: models/repute.py:141
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Validar email"
+
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Cambio del moderador. Motivo:</em> %(reason)s"
-#: models/repute.py:152
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
-msgstr "%(points)s puntos se añadieron a tu usuario %(username)s por la pregunta %(question_title)s"
+msgstr ""
+"%(points)s puntos se añadieron a tu usuario %(username)s por la pregunta "
+"%(question_title)s"
-#: models/repute.py:157
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
-msgstr "%(points)s puntos se restaron de tu usuario %(username)s por la pregunta %(question_title)s"
+msgstr ""
+"%(points)s puntos se restaron de tu usuario %(username)s por la pregunta "
+"%(question_title)s"
#: models/tag.py:106
msgid "interesting"
@@ -3553,23 +3964,25 @@ msgstr "Semanal"
msgid "No email"
msgstr "No enviar email"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Por favor, introduce tu <span>usuario</span>, y luego haz login"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr "(o selecciona otro método de login arriba)"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr "Regístrate"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Cambiar email"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3578,27 +3991,38 @@ msgstr "Guardar tu dirección de email"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
-msgstr "<span class=\"strong big\">Introduce el nuevo email en la caja de abajo</span> si quieres utilizar otro email para <strong>actualizar tus suscripciones</strong>.<br>Ahora estás usando este email: <strong>%(email)s</strong>"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr "<span class='strong big'>Introduce tu email en la caja de abajo.</span> Es necesario que introduzcas un email válido. Si quieres puedes <strong>recibir actualizaciones</strong> de preguntas interesantes vía email. También puedes utilizar tu email para crear tu <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>. Tu dirección de correo no se mostrará a terceros y no la compartiremos con nadie."
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
-msgstr "<strong>Tu nuevo Email:</strong> (no <strong>será</strong> mostrado a nadie, debe ser válido)"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
-msgstr "<strong>Tu email</strong> (<i>debe ser válido, nunca se mostrará a otros</i>)"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "Guardar Email"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3606,112 +4030,112 @@ msgstr "Guardar Email"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:103
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Cancelar"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "Validar email"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
-msgstr "<span class=\"strong big\">Hemos enviado un email de validación a %(email)s.</span> Por favor <strong>comprueba el email enviado</strong> con tu navegador. Es necesario que validemos tu email para asegurarlos que realizas un uso correcto de tu cuenta en este sitio. Si quieres utilizar <strong>otro email</strong>, por favor<a href='%(change_email_url)s'><strong>cámbialo desde aquí</strong></a>."
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "Email no ha sido modificado"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
-msgstr "<span class=\"strong big\">Tu email %(email)s no ha sido modificado.</span> Si decides cambiarlo más tarde - siempre puedes hacerlo editándolo en tu perfil o usando el anterior <a href='%(change_email_url)s'><strong>formulario</strong></a> otra vez."
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "Email modificado"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
-msgstr "<span class='big strong'>Tu email se ha modificado a %(email)s.</span> Las actualizaciones a las preguntas que más te gustan serán enviadas a este email. Las notificaciones de email se envían una vez al día o con menos frecuencia, sólo cuando hay actualizaciones."
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "Email verificado"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
-msgstr "<span class=\"big strong\">Gracias por verificar tu email!</span> Ahora puedes <strong>preguntar</strong> y <strong>contestar</strong> preguntas. También puedes <strong>suscribirte</strong> a preguntas que consideres interesantes y te notificaremos sobre los cambios <strong>una vez al día</strong> o menos."
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "Validación de email no enviada"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Validar email"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
-msgstr "<span class='big strong'>Tu email actual %(email)s ya ha sido validado</span> por tanto la nueva clave no se ha enviado. Puedes <a href='%(change_link)s'>cambiar</a> tu email utilizado para las suscripciones cuando lo desees."
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
+msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
msgid "Registration"
msgstr "Registro"
-#: skins/common/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\">Esta es tu primera vez aquí con el login de %(provider)s.</span> Por favor, crea tu <strong>usuario</strong> y guarda tu <strong>email</strong>. El email te permitirá <strong>suscribirte a las actualizaciones</strong> de las preguntas más interesantes y será usada para crear y recuperar tu imagen de <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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'>Ups... parece que tu nombre de usuario %(username)s ya ha sido registrado.</span></p><p>Por favor elige otro nombre de usuario para utilizar en tu cuenta de %(provider)s. Debes introducir un correo válido para darte de alta en este sitio. Tu email será utilizado para crear un <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> con imagen en tu cuenta. Si lo deseas puedes <strong>recibir actualizaciones</strong> de las preguntas más interesantes por email. Bajo ningún concepto los emails se mostrarán a terceros ni se compartirán con ningún otro fin.</p>"
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr "<p><span class=\"big strong\">Esta es tu primera vez en %(provider)s.</span></p><p>Puedes guardar tu <strong>nombre de usuario</strong> y también tu cuenta de %(provider)s o elegir otro apodo.</p><p>Debes introducir un correo válido para darte de alta en este sitio. Tu email será utilizado para crear un <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> con imagen en tu cuenta. .</p>"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr "<p><span class=\"big strong\">Esta es tu primera vez con el login de Facebook.</span> Por favor, crea tu <strong>nombre de usuario</strong> y guarda tu dirección de <strong>email</strong>. Debes introducir un correo válido para darte de alta en este sitio. Tu email será utilizado para crear un <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> con imagen en tu cuenta. .</p>"
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr "Esta cuenta ya existe, por favor use otra."
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "Nombre de usuario"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr "Dirección de correo electrónico"
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "Registro"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
-msgstr "recibir actualizaciones de motivación"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "selecciona una de las siguientes opciones"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr "Una herramienta para filtrar por etiquetas será mostrada cuando ingreses"
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "crear cuenta"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "Darte de alta"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -3735,10 +4159,13 @@ msgstr "Por favor regístrate aquí:"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
-msgstr "Saludos,\nEl Administrador del sitio"
+"Q&A Forum Administrator"
+msgstr ""
+"Saludos,\n"
+"El Administrador del sitio"
#: skins/common/templates/authopenid/email_validation.txt:1
msgid "Greetings from the Q&A forum"
@@ -3750,14 +4177,20 @@ msgstr "Para usar este foro, ingresa al siguiente enlace:"
#: skins/common/templates/authopenid/email_validation.txt:7
msgid "Following the link above will help us verify your email address."
-msgstr "El enlace de arriba nos ayudará a verificar su dirección de correo electrónico."
+msgstr ""
+"El enlace de arriba nos ayudará a verificar su dirección de correo "
+"electrónico."
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
-msgstr "Si crees que se ha enviado este mensaje por error - \nno necesitas hacer nada. Simplemente ignora este email y acepta nuestras disculpas."
+msgstr ""
+"Si crees que se ha enviado este mensaje por error - \n"
+"no necesitas hacer nada. Simplemente ignora este email y acepta nuestras "
+"disculpas."
#: skins/common/templates/authopenid/logout.html:3
msgid "Logout"
@@ -3771,7 +4204,9 @@ msgstr "Has desconectado la cuenta correctamente"
msgid ""
"However, you still may be logged in to your OpenID provider. Please logout "
"of your provider if you wish to do so."
-msgstr "Puede que sigas conectado a tu cuenta de OpenID. Por favor, desconectate de tu proveedor si deseas hacer eso."
+msgstr ""
+"Puede que sigas conectado a tu cuenta de OpenID. Por favor, desconectate de "
+"tu proveedor si deseas hacer eso."
#: skins/common/templates/authopenid/signin.html:4
msgid "User login"
@@ -3783,7 +4218,11 @@ msgid ""
"\n"
" Your answer to %(title)s %(summary)s will be posted once you log in\n"
" "
-msgstr "\n<span class=\"strong big\">Tu respuesta a </span> <i>\"<strong>%(title)s</strong> %(summary)s...\"</i> <span class=\"strong big\">se ha guardado y sera publicada cuando hagas login.</span>"
+msgstr ""
+"\n"
+"<span class=\"strong big\">Tu respuesta a </span> <i>\"<strong>%(title)s</"
+"strong> %(summary)s...\"</i> <span class=\"strong big\">se ha guardado y "
+"sera publicada cuando hagas login.</span>"
#: skins/common/templates/authopenid/signin.html:21
#, python-format
@@ -3791,163 +4230,154 @@ msgid ""
"Your question \n"
" %(title)s %(summary)s will be posted once you log in\n"
" "
-msgstr "<span class=\"strong big\">Tu pregunta</span> <i>\"<strong>%(title)s</strong> %(summary)s...\"</i> <span class=\"strong big\">se ha guardado y sera publicada cuando hagas login.</span>"
+msgstr ""
+"<span class=\"strong big\">Tu pregunta</span> <i>\"<strong>%(title)s</"
+"strong> %(summary)s...\"</i> <span class=\"strong big\">se ha guardado y "
+"sera publicada cuando hagas login.</span>"
#: skins/common/templates/authopenid/signin.html:28
+#, fuzzy
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or"
-" similar technology. Your external service password always stays "
-"confidential and you don't have to rememeber or create another one."
-msgstr "Utiliza los servicios externos que desees para registrarte. Tu contraseña siempre sera confidencia y no tendras que crear una nueva para utilizar este servicio."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
+msgstr ""
+"Utiliza los servicios externos que desees para registrarte. Tu contraseña "
+"siempre sera confidencia y no tendras que crear una nueva para utilizar este "
+"servicio."
#: skins/common/templates/authopenid/signin.html:31
msgid ""
"It's a good idea to make sure that your existing login methods still work, "
-"or add a new one. Please click any of the icons below to check/change or add"
-" new login methods."
-msgstr "Es buena idea asegurarte que los metodos de login siguen existiendo y funcionan. Si no, puedes cambiarlos por otros nuevos, para ello haz click en cualquiera de los iconos de abajo."
+"or add a new one. Please click any of the icons below to check/change or add "
+"new login methods."
+msgstr ""
+"Es buena idea asegurarte que los metodos de login siguen existiendo y "
+"funcionan. Si no, puedes cambiarlos por otros nuevos, para ello haz click en "
+"cualquiera de los iconos de abajo."
#: skins/common/templates/authopenid/signin.html:33
msgid ""
-"Please add a more permanent login method by clicking one of the icons below,"
-" to avoid logging in via email each time."
-msgstr "Por favor añade otros tipos de login haciendo click en los iconos de abajo para evitar tener que hacer login con tu email repetidamente."
+"Please add a more permanent login method by clicking one of the icons below, "
+"to avoid logging in via email each time."
+msgstr ""
+"Por favor añade otros tipos de login haciendo click en los iconos de abajo "
+"para evitar tener que hacer login con tu email repetidamente."
#: skins/common/templates/authopenid/signin.html:37
msgid ""
"Click on one of the icons below to add a new login method or re-validate an "
"existing one."
-msgstr "Haz click en los iconos de abajo para añadir nuevos metodos de login o revalidar los existentes."
+msgstr ""
+"Haz click en los iconos de abajo para añadir nuevos metodos de login o "
+"revalidar los existentes."
#: skins/common/templates/authopenid/signin.html:39
msgid ""
"You don't have a method to log in right now, please add one or more by "
"clicking any of the icons below."
-msgstr "No tienes ningun metodo de login en estos momentos, por favor añade uno o mas haciendo click en cualquiera de los iconos de abajo."
+msgstr ""
+"No tienes ningun metodo de login en estos momentos, por favor añade uno o "
+"mas haciendo click en cualquiera de los iconos de abajo."
#: skins/common/templates/authopenid/signin.html:42
msgid ""
"Please check your email and visit the enclosed link to re-connect to your "
"account"
-msgstr "Por favor, comprueba tu email y haz click en el link que te enviamos para reconectar tu cuenta"
+msgstr ""
+"Por favor, comprueba tu email y haz click en el link que te enviamos para "
+"reconectar tu cuenta"
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+#, fuzzy
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Por favor introduce tu <span>nombre de usuario</span>, y haz login"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Por favor regístrate aquí:"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr "Login erroneo, por favor intentalo de nuevo"
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr "Login o email"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Contraseña"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Registro"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
-msgstr "Para modificar tu contraseña por favor introduce la nueva dos veces y pulsa el boton"
+msgstr ""
+"Para modificar tu contraseña por favor introduce la nueva dos veces y pulsa "
+"el boton"
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr "Nueva contraseña"
-#: skins/common/templates/authopenid/signin.html:126
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr "Por favor, teclea de nuevo"
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr "Estos son tus metodos actuales de login"
-#: skins/common/templates/authopenid/signin.html:154
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr "proveedor"
-#: skins/common/templates/authopenid/signin.html:155
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr "ultima vez utilizado"
-#: skins/common/templates/authopenid/signin.html:156
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr "eliminar, si lo deseas"
-#: skins/common/templates/authopenid/signin.html:170
-#: skins/common/templates/question/answer_controls.html:34
-#: skins/common/templates/question/question_controls.html:38
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "eliminar"
-#: skins/common/templates/authopenid/signin.html:172
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr "no puede ser eliminado"
-#: skins/common/templates/authopenid/signin.html:185
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr "Sigues teniendo problemas de registro?"
-#: skins/common/templates/authopenid/signin.html:190
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr "Por favor, introduce tu email y obten una nueva llave"
-#: skins/common/templates/authopenid/signin.html:192
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr "Por favor, introduce tu email para recuperar tu cuenta"
-#: skins/common/templates/authopenid/signin.html:195
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr "recupera tu cuenta con tu email"
-#: skins/common/templates/authopenid/signin.html:206
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr "Enviar una nueva llave de recuperacion"
-#: skins/common/templates/authopenid/signin.html:208
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr "Recuperar tu cuenta con tu email"
-#: skins/common/templates/authopenid/signin.html:220
-msgid "Why use OpenID?"
-msgstr "Por que usar OpenID?"
-
-#: skins/common/templates/authopenid/signin.html:223
-msgid "with openid it is easier"
-msgstr "con OpenID es más fácil"
-
-#: skins/common/templates/authopenid/signin.html:226
-msgid "reuse openid"
-msgstr "re-usar openid"
-
-#: skins/common/templates/authopenid/signin.html:229
-msgid "openid is widely adopted"
-msgstr "openID es ampliamente adoptado"
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "openid is supported open standard"
-msgstr "openID es un estándar abierto"
-
-#: skins/common/templates/authopenid/signin.html:236
-msgid "Find out more"
-msgstr "Para saber más"
-
-#: skins/common/templates/authopenid/signin.html:237
-msgid "Get OpenID"
-msgstr "Obetener OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "Darte de alta"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
-msgstr "Por favor, registrate haciendo click en cualquiera de los iconos de abajo"
+msgstr ""
+"Por favor, registrate haciendo click en cualquiera de los iconos de abajo"
#: skins/common/templates/authopenid/signup_with_password.html:23
msgid "or create a new user name and password here"
@@ -3958,24 +4388,31 @@ msgid "Create login name and password"
msgstr "Crear nombre de usuario y contraseña"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
-msgstr "Registro tradicional"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
-msgstr "Por favor introduce las dos palabras de abajo para evitar la creacion de cuentas de spam"
-
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Crear cuenta"
+msgstr ""
+"Por favor introduce las dos palabras de abajo para evitar la creacion de "
+"cuentas de spam"
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "o"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "volver al login de OpenID"
@@ -4024,74 +4461,88 @@ msgstr "Por favor, selecciona los avatares que quieres eliminar"
#: skins/common/templates/avatar/confirm_delete.html:6
#, python-format
msgid ""
-"You have no avatars to delete. Please <a "
-"href=\"%(avatar_change_url)s\">upload one</a> now."
-msgstr "No tienes avatars para eliminar. Por favor <a href=\"%(avatar_change_url)s\">sube uno</a> ahora."
+"You have no avatars to delete. Please <a href=\"%(avatar_change_url)s"
+"\">upload one</a> now."
+msgstr ""
+"No tienes avatars para eliminar. Por favor <a href=\"%(avatar_change_url)s"
+"\">sube uno</a> ahora."
#: skins/common/templates/avatar/confirm_delete.html:12
msgid "Delete These"
msgstr "Eliminar este"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "enlace permanente a esta respuesta"
+#: skins/common/templates/question/answer_controls.html:2
+msgid "swap with question"
+msgstr "cambiar con pregunta"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "enlace permanente"
-#: skins/common/templates/question/answer_controls.html:11
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:313
-#: skins/default/templates/revisions.html:38
-#: skins/default/templates/revisions.html:41
-msgid "edit"
-msgstr "editar"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "enlace"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:22
-#: skins/common/templates/question/question_controls.html:30
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "revivir"
+
+#: skins/common/templates/question/answer_controls.html:19
+#, fuzzy
+msgid "remove offensive flag"
+msgstr "Ver denuncias"
+
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+msgid "remove flag"
+msgstr "eliminar etiqueta"
+
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
-msgstr "reportar como ofensivo (por ej. si tiene spam, pubicidad, material malicioso, etc.)"
+msgstr ""
+"reportar como ofensivo (por ej. si tiene spam, pubicidad, material "
+"malicioso, etc.)"
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "marcar como ofensivo"
-#: skins/common/templates/question/answer_controls.html:24
-#: skins/common/templates/question/question_controls.html:31
-msgid "remove flag"
-msgstr "eliminar etiqueta"
-
-#: skins/common/templates/question/answer_controls.html:34
-#: skins/common/templates/question/question_controls.html:38
-msgid "undelete"
-msgstr "revivir"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "editar"
-#: skins/common/templates/question/answer_controls.html:40
-msgid "swap with question"
-msgstr "cambiar con pregunta"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "esta respuesta ha sido seleccionada como la correcta"
-#: skins/common/templates/question/answer_vote_buttons.html:9
-#: skins/common/templates/question/answer_vote_buttons.html:10
+#: skins/common/templates/question/answer_vote_buttons.html:8
msgid "mark this answer as correct (click again to undo)"
msgstr "marcar esta respuesta como correcta (haz click de nuevo para deshacer)"
-#: skins/common/templates/question/answer_vote_buttons.html:12
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "%(question_author)s ha seleccionado tu respuesta como correcta"
-
#: skins/common/templates/question/closed_question_info.html:2
#, python-format
msgid ""
-"The question has been closed for the following reason "
-"<b>\"%(close_reason)s\"</b> <i>by"
-msgstr "La pregunta ha sido cerrada por el siguiente motivo <b>\"%(close_reason)s\"</b> <i>por"
+"The question has been closed for the following reason <b>\"%(close_reason)s"
+"\"</b> <i>by"
+msgstr ""
+"La pregunta ha sido cerrada por el siguiente motivo <b>\"%(close_reason)s\"</"
+"b> <i>por"
#: skins/common/templates/question/closed_question_info.html:4
#, python-format
@@ -4099,44 +4550,52 @@ msgid "close date %(closed_at)s"
msgstr "fecha de cierre %(closed_at)s"
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr "re-etiquetar"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "reabrir"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "cerrar"
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr "re-etiquetar"
+
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
msgstr "una de las siguientes es requerida"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "etiquetas"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(requerido)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Vista preliminar en tiempo real del editor Markdown"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:84
-#: skins/default/templates/question/javascript.html:87
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "ocultar vista previa"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Etiquetas relacionadas"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
@@ -4180,7 +4639,9 @@ msgstr "la url es errónea - por favor verificala;"
msgid ""
"the page you tried to visit is protected or you don't have sufficient "
"points, see"
-msgstr "la pagina a la que estás intentando acceder esta protegida y no tienes los suficientes puntos para verla"
+msgstr ""
+"la pagina a la que estás intentando acceder esta protegida y no tienes los "
+"suficientes puntos para verla"
#: skins/default/templates/404.jinja.html:19
#: skins/default/templates/widgets/footer.html:39
@@ -4216,7 +4677,9 @@ msgstr "Error Interno del Servidor"
#: skins/default/templates/500.jinja.html:8
msgid "system error log is recorded, error will be fixed as soon as possible"
-msgstr "cada error del sistema es registrado, el error será corregido tan pronto como sea posible"
+msgstr ""
+"cada error del sistema es registrado, el error será corregido tan pronto "
+"como sea posible"
#: skins/default/templates/500.jinja.html:9
msgid "please report the error to the site administrators if you wish"
@@ -4259,13 +4722,16 @@ msgstr "Guardar edición"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:87
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "mostrar vista previa"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "Formula una pregunta"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "Formula tu pregunta"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
#: skins/default/templates/user_profile/user_recent.html:19
@@ -4296,11 +4762,7 @@ msgid_plural "users received this badge:"
msgstr[0] "el usuario recibió la medalla:"
msgstr[1] "los usuarios recibieron la medalla:"
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Resúmen de medallas"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "Medallas"
@@ -4309,41 +4771,50 @@ msgid "Community gives you awards for your questions, answers and votes."
msgstr "La comunidad le da premios a sus preguntas, respuestas y votos."
#: skins/default/templates/badges.html:8
-#, python-format
+#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at %(feedback_faq_url)s.\n"
-msgstr "Abajo encontrarás la lista disponible de medallas y el número de veces que se han entregado cada tipo de medalla. Te gustaría añadir más medallas? Por favor, envíanos tu <a href='%(feedback_faq_url)s'>feedback</a>\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
+msgstr ""
+"Abajo encontrarás la lista disponible de medallas y el número de veces que "
+"se han entregado cada tipo de medalla. Te gustaría añadir más medallas? Por "
+"favor, envíanos tu <a href='%(feedback_faq_url)s'>feedback</a>\n"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Medallas de la comunidad"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr "medalla de oro: el mejor de los honores, raramente ofrecida"
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr "descripción de la medalla de oro"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
-msgstr "medalla de plata: ofrecida ocasionalmente por contribuciones muy importantes"
+msgstr ""
+"medalla de plata: ofrecida ocasionalmente por contribuciones muy importantes"
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
-msgstr "descripción de la medalla de plata"
+#: skins/default/templates/badges.html:51
+#, fuzzy
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
+msgstr ""
+"medalla de plata: ofrecida ocasionalmente por contribuciones muy importantes"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "medalla de bronce: a menudo como un honor especial"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "descripción de la medalla de bronce"
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Cerrar pregunta"
@@ -4379,23 +4850,31 @@ msgstr "¿Que tipo de preguntas puedo hacer aquí?"
msgid ""
"Most importanly - questions should be <strong>relevant</strong> to this "
"community."
-msgstr "Los más importante - las preguntas debe de ser <strong>relevantes</strong> para esta comunidad."
+msgstr ""
+"Los más importante - las preguntas debe de ser <strong>relevantes</strong> "
+"para esta comunidad."
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
-msgstr "Antes de hacer una pregunta - asegurate de haber buscado sobre ella, quizas ya encuentres una respuesta concreta."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
+msgstr ""
+"Antes de hacer una pregunta - asegurate de haber buscado sobre ella, quizas "
+"ya encuentres una respuesta concreta."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "¿Qué preguntas debo evitar hacer?"
#: skins/default/templates/faq_static.html:11
msgid ""
"Please avoid asking questions that are not relevant to this community, too "
"subjective and argumentative."
-msgstr "Por favor, evite hacer preguntas que no son relevantes para esta comunidad, demasiado subjetivas y argumentativas."
+msgstr ""
+"Por favor, evite hacer preguntas que no son relevantes para esta comunidad, "
+"demasiado subjetivas y argumentativas."
#: skins/default/templates/faq_static.html:13
msgid "What should I avoid in my answers?"
@@ -4403,10 +4882,11 @@ msgstr "¿Qué debo evitar en mis respuestas?"
#: skins/default/templates/faq_static.html:14
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 "es un un sitio de Preguntas y Respuestas, no un grupo de discusión. Si quieres discutir, hazlo en los comentarios sobrelas respuestas."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
+msgstr ""
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4421,122 +4901,158 @@ msgid "This website is moderated by the users."
msgstr "Este sitio es moderado por los usuarios."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
-msgstr "El sistema de reputación/karma permite a los usuarios obtener la autorización para realizar una variedad de tareas de moderación."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
+msgstr ""
+"El sistema de reputación/karma permite a los usuarios obtener la "
+"autorización para realizar una variedad de tareas de moderación."
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "Cómo funciona este sistema de reputación?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr "Resumen de reputación del sistema"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, 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 "Si haces una pregunta interesante o envias una respuesta que sea de ayuda, te valoraran positivamente. Pero si la respuesta es confusa podran valorarte negativamente. Cada voto positivo generara <strong>%(REP_GAIN_FOR_RECEIVING_UPVOTE)s</strong> puntos , cada voto negativo te restara <strong>%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s</strong> puntos. Dispones de un limite de <strong>%(MAX_REP_GAIN_PER_USER_PER_DAY)s</strong> puntos que puedes ganar cada dia con cada pregunta. La tabla de abajo te muestra como funcionan los puntos de reputacion para cada tipo de tarea de moderacion."
+"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 ""
+"Si haces una pregunta interesante o envias una respuesta que sea de ayuda, "
+"te valoraran positivamente. Pero si la respuesta es confusa podran valorarte "
+"negativamente. Cada voto positivo generara <strong>"
+"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s</strong> puntos , cada voto negativo te "
+"restara <strong>%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s</strong> puntos. "
+"Dispones de un limite de <strong>%(MAX_REP_GAIN_PER_USER_PER_DAY)s</strong> "
+"puntos que puedes ganar cada dia con cada pregunta. La tabla de abajo te "
+"muestra como funcionan los puntos de reputacion para cada tipo de tarea de "
+"moderacion."
#: skins/default/templates/faq_static.html:32
#: skins/default/templates/user_profile/user_votes.html:13
msgid "upvote"
msgstr "voto positivo"
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "comentar"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "voto negativo"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
msgid " accept own answer to own questions"
msgstr "aceptar respuestas propias a tus preguntas"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "abrir y cerrar preguntas propias"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr "re-etiquetar otras preguntas"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "editar preguntas wiki"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
msgid "edit any answer"
msgstr "editar cualquier respuesta"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
msgid "delete any comment"
msgstr "eliminar cualquier comentario"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "que es gravatar"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
-msgstr "información de gravatar"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Para registrarme, necesito crear una contraseña?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
-msgstr "No es necesario hacer esto. Puedes hacer login desde cualquier servicio que soporte OpenID, por ejemplo Google, Yahoo, AOL, etc"
+msgstr ""
+"No es necesario hacer esto. Puedes hacer login desde cualquier servicio que "
+"soporte OpenID, por ejemplo Google, Yahoo, AOL, etc"
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr "\"Haz Login ahora!\""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "Por que otras personas puede editar mis preguntas/respuestas?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr "Objetivo de este sitio es ..."
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "Entonces, la presguntas y respuestas pueden ser editas comos los sitios wiki (como Wikipedia) por usuarios con experiencia en ese sitio, y todo con el objetivo de aumentar la calidad del contenido."
+msgstr ""
+"Entonces, la presguntas y respuestas pueden ser editas comos los sitios wiki "
+"(como Wikipedia) por usuarios con experiencia en ese sitio, y todo con el "
+"objetivo de aumentar la calidad del contenido."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr "Si este enfoque no es para usted, nosotros respetaremos su opción."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "Aún tiene preguntas?"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
-msgstr "Por favor <a href='%(ask_question_url)s'>haz tu pregunta</a>, y ayudaras a esta comunidad a crecer!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
+msgstr ""
+"Por favor <a href='%(ask_question_url)s'>haz tu pregunta</a>, y ayudaras a "
+"esta comunidad a crecer!"
#: skins/default/templates/feedback.html:3
msgid "Feedback"
@@ -4550,22 +5066,36 @@ msgstr "Danos tu Feedback!"
#, python-format
msgid ""
"\n"
-" <span class='big strong'>Dear %(user_name)s</span>, we look forward to hearing your feedback. \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 "\n <span class='big strong'>Estimado %(user_name)s</span>, estamos deseando leer tu opinion. \n Escribe tu mensaje abajo.\n "
+msgstr ""
+"\n"
+" <span class='big strong'>Estimado %(user_name)s</span>, estamos "
+"deseando leer tu opinion. \n"
+" Escribe tu mensaje abajo.\n"
+" "
#: skins/default/templates/feedback.html:21
msgid ""
"\n"
-" <span class='big strong'>Dear visitor</span>, we look forward to hearing your feedback.\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 "\n <span class='big strong'>Estimado visitanter</span>, estamos deseando leer tu opinion.\n Escribe tu mensaje abajo.\n "
+msgstr ""
+"\n"
+" <span class='big strong'>Estimado visitanter</span>, estamos "
+"deseando leer tu opinion.\n"
+" Escribe tu mensaje abajo.\n"
+" "
#: skins/default/templates/feedback.html:30
msgid "(to hear from us please enter a valid email or check the box below)"
-msgstr "(para que te podamos contestar introduce un email valido o marca la casilla de abajo)"
+msgstr ""
+"(para que te podamos contestar introduce un email valido o marca la casilla "
+"de abajo)"
#: skins/default/templates/feedback.html:37
#: skins/default/templates/feedback.html:46
@@ -4585,7 +5115,9 @@ msgstr "Enviar sugerencias"
msgid ""
"\n"
"Hello, this is a %(site_title)s forum feedback message.\n"
-msgstr "\nHola, esto es un mensaje de %(site_title)s.\n"
+msgstr ""
+"\n"
+"Hola, esto es un mensaje de %(site_title)s.\n"
#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
msgid "Help"
@@ -4609,39 +5141,56 @@ msgstr "Gracias por usar %(app_name)s, asi es como funciona."
msgid ""
"This site is for asking and answering questions, not for open-ended "
"discussions."
-msgstr "Este sitio es para preguntar y contestar pregunras, no para debates o discusiones."
+msgstr ""
+"Este sitio es para preguntar y contestar pregunras, no para debates o "
+"discusiones."
#: skins/default/templates/help.html:17
msgid ""
"We encourage everyone to use “question” space for asking and “answer” for "
"answering."
-msgstr "Te aconsejamos utilizar el espacio de preguntas para hacer preguntas y el de respuestas para responder."
+msgstr ""
+"Te aconsejamos utilizar el espacio de preguntas para hacer preguntas y el de "
+"respuestas para responder."
#: skins/default/templates/help.html:20
msgid ""
"Despite that, each question and answer can be commented – \n"
" the comments are good for the limited discussions."
-msgstr "A pesar de esto, puedes comentar cada pregunta y cada respuesta – \n aunque no se recomienda utilizar los comentarios para iniciar debates demasiado extensos, solo para discusiones cortas."
+msgstr ""
+"A pesar de esto, puedes comentar cada pregunta y cada respuesta – \n"
+" aunque no se recomienda utilizar los comentarios para iniciar debates "
+"demasiado extensos, solo para discusiones cortas."
#: skins/default/templates/help.html:24
#, python-format
msgid ""
"Voting in %(app_name)s helps to select best answers and thank most helpful "
"users."
-msgstr "Votar en %(app_name)s ayuda a seleccionar las mejores respuestas y agradecer la colaboracion de nuestros mejores usuarios."
+msgstr ""
+"Votar en %(app_name)s ayuda a seleccionar las mejores respuestas y agradecer "
+"la colaboracion de nuestros mejores usuarios."
#: skins/default/templates/help.html:26
#, python-format
msgid ""
"Please vote when you find helpful information,\n"
" it really helps the %(app_name)s community."
-msgstr "Por favor, vota cuando encuentres informacion de interes,\n asi ayudaras a la comunidad de %(app_name)s."
+msgstr ""
+"Por favor, vota cuando encuentres informacion de interes,\n"
+" asi ayudaras a la comunidad de %(app_name)s."
#: skins/default/templates/help.html:29
msgid ""
-"Besides, you can @mention users anywhere in the text to point their attention,\n"
-" follow users and conversations and report inappropriate content by flagging it."
-msgstr "Ademas, puedes @mencionar a los usuarios en cualquier punto de tu texto para llamar su atencion,\n seguir usuarios y denunciar contenido inapropiado haciendo click en denunciar."
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+"Ademas, puedes @mencionar a los usuarios en cualquier punto de tu texto para "
+"llamar su atencion,\n"
+" seguir usuarios y denunciar contenido inapropiado haciendo click en "
+"denunciar."
#: skins/default/templates/help.html:32
msgid "Enjoy."
@@ -4656,7 +5205,10 @@ msgstr "Importar datos de StackExchange"
msgid ""
"<em>Warning:</em> if your database is not empty, please back it up\n"
" before attempting this operation."
-msgstr "<em>Advertencia:</em> si tu base de datos no esta vacia, por favor haz un back up de la misma\n antes de realizar esta operacion."
+msgstr ""
+"<em>Advertencia:</em> si tu base de datos no esta vacia, por favor haz un "
+"back up de la misma\n"
+" antes de realizar esta operacion."
#: skins/default/templates/import_data.html:16
msgid ""
@@ -4664,7 +5216,12 @@ msgid ""
" the data import completes. This process may take several minutes.\n"
" Please note that feedback will be printed in plain text.\n"
" "
-msgstr "Sube tu fichero de backup de stackexchange en formato .zip y luego espera hasta \n que la importacion de los datos se complete. Este proceso puede tardar varios minutos.\n El feedback de esta operacion sera mostrado en texto plano."
+msgstr ""
+"Sube tu fichero de backup de stackexchange en formato .zip y luego espera "
+"hasta \n"
+" que la importacion de los datos se complete. Este proceso puede "
+"tardar varios minutos.\n"
+" El feedback de esta operacion sera mostrado en texto plano."
#: skins/default/templates/import_data.html:25
msgid "Import data"
@@ -4673,8 +5230,13 @@ msgstr "Importar datos"
#: skins/default/templates/import_data.html:27
msgid ""
"In the case you experience any difficulties in using this import tool,\n"
-" please try importing your data via command line: <code>python manage.py load_stackexchange path/to/your-data.zip</code>"
-msgstr "En caso de que tengas dificultades utilizando esta herramienta de importacion,\n puedes intentar importar tus datos mediante la linea de comandos: <code>python manage.py load_stackexchange path/to/your-data.zip</code>"
+" please try importing your data via command line: <code>python manage."
+"py load_stackexchange path/to/your-data.zip</code>"
+msgstr ""
+"En caso de que tengas dificultades utilizando esta herramienta de "
+"importacion,\n"
+" puedes intentar importar tus datos mediante la linea de comandos: "
+"<code>python manage.py load_stackexchange path/to/your-data.zip</code>"
#: skins/default/templates/instant_notification.html:1
#, python-format
@@ -4685,15 +5247,23 @@ msgstr "<p>Estimado %(receiving_user_name)s,</p>"
#, python-format
msgid ""
"\n"
-"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a>:</p>\n"
-msgstr "\n<p>%(update_author_name)s te ha enviado un <a href=\"%(post_url)s\">nuevo comentario</a>:</p>\n"
+"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a>:</"
+"p>\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s te ha enviado un <a href=\"%(post_url)s\">nuevo "
+"comentario</a>:</p>\n"
#: skins/default/templates/instant_notification.html:8
#, python-format
msgid ""
"\n"
-"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a></p>\n"
-msgstr "\n<p>%(update_author_name)s te ha enviado un <a href=\"%(post_url)s\">nuevo comentario</a></p>\n"
+"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a></"
+"p>\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s te ha enviado un <a href=\"%(post_url)s\">nuevo "
+"comentario</a></p>\n"
#: skins/default/templates/instant_notification.html:13
#, python-format
@@ -4701,7 +5271,10 @@ msgid ""
"\n"
"<p>%(update_author_name)s answered a question \n"
"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
-msgstr "\n<p>%(update_author_name)s respondio a la pregunta \n<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s respondio a la pregunta \n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
#: skins/default/templates/instant_notification.html:19
#, python-format
@@ -4709,7 +5282,10 @@ 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 "\n<p>%(update_author_name)s envio la pregunta \n<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s envio la pregunta \n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
#: skins/default/templates/instant_notification.html:25
#, python-format
@@ -4717,7 +5293,10 @@ 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 "\n<p>%(update_author_name)s actualizo una respuesta a la pregunta\n<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s actualizo una respuesta a la pregunta\n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
#: skins/default/templates/instant_notification.html:31
#, python-format
@@ -4725,190 +5304,182 @@ msgid ""
"\n"
"<p>%(update_author_name)s updated a question \n"
"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
-msgstr "\n<p>%(update_author_name)s actualizo la pregunta \n<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s actualizo la pregunta \n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
#: skins/default/templates/instant_notification.html:37
#, python-format
msgid ""
"\n"
"<div>%(content_preview)s</div>\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 "\n<div>%(content_preview)s</div>\n<p>Cambia la frecuencia de estas notificaciones o eliminalas desde tu <a href=\"%(user_subscriptions_url)s\">perfil</a>, Gracias!</p>\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 ""
+"\n"
+"<div>%(content_preview)s</div>\n"
+"<p>Cambia la frecuencia de estas notificaciones o eliminalas desde tu <a "
+"href=\"%(user_subscriptions_url)s\">perfil</a>, Gracias!</p>\n"
#: skins/default/templates/instant_notification.html:42
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr "<p>Gracias,<br/>El Administrador</p>"
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr "Compartir esta pregunta en %(site)s"
#: skins/default/templates/macros.html:16
-#: skins/default/templates/macros.html:440
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr "seguir a %(alias)s"
#: skins/default/templates/macros.html:19
-#: skins/default/templates/macros.html:443
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr "dejar de seguir a %(alias)s"
#: skins/default/templates/macros.html:20
-#: skins/default/templates/macros.html:444
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr "siguiendo a %(alias)s"
-#: skins/default/templates/macros.html:31
-msgid "i like this question (click again to cancel)"
-msgstr "me gusta esta pregunta (haz click de nuevo para cancelar)"
-
#: skins/default/templates/macros.html:33
-msgid "i like this answer (click again to cancel)"
-msgstr "me gusta esta respuesta (clic de nuevo para cancelar)"
-
-#: skins/default/templates/macros.html:39
msgid "current number of votes"
msgstr "numero actual de votos"
-#: skins/default/templates/macros.html:45
-msgid "i dont like this question (click again to cancel)"
-msgstr "no me gusta esta pregunta (haz click de nuevo para cancelar)"
-
-#: skins/default/templates/macros.html:47
-msgid "i dont like this answer (click again to cancel)"
-msgstr "no me gusta esta respuesta (clic de nuevo para cancelar)"
-
-#: skins/default/templates/macros.html:54
+#: skins/default/templates/macros.html:46
msgid "anonymous user"
msgstr "usuario anonimo"
-#: skins/default/templates/macros.html:87
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr "este post pertenece en la comunidad wiki"
-#: skins/default/templates/macros.html:90
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
-msgstr "Este post pertenece a la wiki.\n Cualquier usuario con un karma mayor a %(wiki_min_rep)s puede mejorarlo si lo desea."
+msgstr ""
+"Este post pertenece a la wiki.\n"
+" Cualquier usuario con un karma mayor a %(wiki_min_rep)s puede "
+"mejorarlo si lo desea."
-#: skins/default/templates/macros.html:96
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "preguntado"
-#: skins/default/templates/macros.html:98
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "respondido"
-#: skins/default/templates/macros.html:100
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "publicado"
-#: skins/default/templates/macros.html:130
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "actualizado"
-#: skins/default/templates/macros.html:206
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "ver preguntas etiquetadas con '%(tag)s'"
-#: skins/default/templates/macros.html:258
-#: skins/default/templates/macros.html:266
-#: skins/default/templates/question/javascript.html:19
-msgid "add comment"
-msgstr "comentar"
-
-#: skins/default/templates/macros.html:259
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "ver <strong>%(counter)s</strong> mas"
-msgstr[1] "ver <strong>%(counter)s</strong> mas"
-
-#: skins/default/templates/macros.html:261
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "ver <strong>%(counter)s</strong> comentario mas\n "
-msgstr[1] "ver <strong>%(counter)s</strong> comentarios mas\n "
-
-#: skins/default/templates/macros.html:305
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "eliminar este comentario"
-#: skins/default/templates/macros.html:511 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "Imagen Gravatar de %(username)s "
-#: skins/default/templates/macros.html:520
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr "la pagina de %(username)s's es %(url)s"
-#: skins/default/templates/macros.html:535
-#: skins/default/templates/macros.html:536
-#: skins/default/templates/macros.html:574
-#: skins/default/templates/macros.html:575
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "anterior"
-#: skins/default/templates/macros.html:547
-#: skins/default/templates/macros.html:586
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "pagina actual"
-#: skins/default/templates/macros.html:549
-#: skins/default/templates/macros.html:556
-#: skins/default/templates/macros.html:588
-#: skins/default/templates/macros.html:595
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "%(num)s pagina"
-#: skins/default/templates/macros.html:560
-#: skins/default/templates/macros.html:599
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "pagina siguiente"
-#: skins/default/templates/macros.html:611
+#: skins/default/templates/macros.html:607
+#, python-format
msgid "responses for %(username)s"
msgstr "respuestas a %(username)s"
-#: skins/default/templates/macros.html:614
-#, python-format
-msgid "you have a new response"
+#: skins/default/templates/macros.html:610
+#, fuzzy, python-format
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "tienes una nueva respuesta"
msgstr[1] "tienes %(response_count)s nuevas respuestas"
-#: skins/default/templates/macros.html:617
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "sin respuestas todavia"
-#: skins/default/templates/macros.html:632
-#: skins/default/templates/macros.html:633
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "%(new)s denuncias nuevas en posts y %(seen)s anteriores"
-#: skins/default/templates/macros.html:635
-#: skins/default/templates/macros.html:636
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr "%(new)s denuncias nuevas en posts"
-#: skins/default/templates/macros.html:641
-#: skins/default/templates/macros.html:642
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr "%(seen)s denuncias en posts"
@@ -4917,6 +5488,38 @@ msgstr "%(seen)s denuncias en posts"
msgid "Questions"
msgstr "Preguntas"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "ver <strong>%(counter)s</strong> mas"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "ver <strong>%(counter)s</strong> mas"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "comentar"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Responde tu pregunta"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "Tu respuesta"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Haz Login o registrate para contestar"
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
msgid "Edit question"
@@ -4924,8 +5527,9 @@ msgstr "Editar pregunta"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Cambiar etiquetas"
+#, fuzzy
+msgid "Retag question"
+msgstr "Preguntas relacionadas"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -4937,7 +5541,9 @@ msgstr "Por que usar o modificar etiquetas?"
#: skins/default/templates/question_retag.html:30
msgid "Tags help to keep the content better organized and searchable"
-msgstr "Las etiquetas ayudan a mantener el contenido mejor organizado y mas facil de buscar"
+msgstr ""
+"Las etiquetas ayudan a mantener el contenido mejor organizado y mas facil de "
+"buscar"
#: skins/default/templates/question_retag.html:32
msgid "tag editors receive special awards from the community"
@@ -4960,7 +5566,9 @@ msgstr "Titulo"
msgid ""
"This question has been closed by \n"
" <a href=\"%(closed_by_profile_url)s\">%(closed_by_username)s</a>\n"
-msgstr "La pregunta ha sido cerrada por \n <a href=\"%(closed_by_profile_url)s\">%(closed_by_username)s</a>\n"
+msgstr ""
+"La pregunta ha sido cerrada por \n"
+" <a href=\"%(closed_by_profile_url)s\">%(closed_by_username)s</a>\n"
#: skins/default/templates/reopen.html:16
msgid "Close reason:"
@@ -4978,6 +5586,13 @@ msgstr "Reabrir la pregunta?"
msgid "Reopen this question"
msgstr "Reabrir esta pregunta"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5005,15 +5620,15 @@ msgstr "Por favor, suscribete a las siguientes etiquetas:"
msgid "Subscribe"
msgstr "Suscribir"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Lista de etiquetas"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr "Etiquetas relacionadas \"%(stag)s\""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Lista de etiquetas"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
@@ -5049,8 +5664,10 @@ msgstr "ver usuarios con la reputacion mas alta"
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "reputación"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr "karma"
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5081,7 +5698,7 @@ msgstr "usurios que coinciden con la consulta %(suser)s:"
msgid "Nothing found."
msgstr "Nada encontrado."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:136
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5123,7 +5740,8 @@ msgstr "empezar de nuevo"
#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
-msgstr " - expandir o buscar añadiendo mas etiquetas para extender la busqueda."
+msgstr ""
+" - expandir o buscar añadiendo mas etiquetas para extender la busqueda."
#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
@@ -5186,29 +5804,34 @@ msgstr "RSS"
#, python-format
msgid ""
"Please note: %(app_name)s requires javascript to work properly, please "
-"enable javascript in your browser, <a href=\"%(noscript_url)s\">here is "
-"how</a>"
-msgstr "Nota: %(app_name)s requiere javascript para que funcione correctamente, por favor activa javascript en tu navegador, aqui puedes encontrar la <a href=\"%(noscript_url)s\">ayuda</a>"
+"enable javascript in your browser, <a href=\"%(noscript_url)s\">here is how</"
+"a>"
+msgstr ""
+"Nota: %(app_name)s requiere javascript para que funcione correctamente, por "
+"favor activa javascript en tu navegador, aqui puedes encontrar la <a href="
+"\"%(noscript_url)s\">ayuda</a>"
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] "cada etiqueta debe tener menos de %(max_chars)s caracter"
msgstr[1] "cada etiqueta debe tener menos de %(max_chars)s caracteres"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "por favor utiliza %(tag_count)s etiqueta"
msgstr[1] "por favor utiliza %(tag_count)s etiquetas o menos"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
-msgstr "por favor utiliza %(tag_count)s etiquetas, de menos de %(max_chars)s caracteres cada una"
+msgstr ""
+"por favor utiliza %(tag_count)s etiquetas, de menos de %(max_chars)s "
+"caracteres cada una"
#: skins/default/templates/question/answer_tab_bar.html:3
#, python-format
@@ -5220,8 +5843,14 @@ msgid_plural ""
"\n"
" %(counter)s Answers\n"
" "
-msgstr[0] "\n %(counter)s Respuesta\n "
-msgstr[1] "\n %(counter)s Respuestas\n "
+msgstr[0] ""
+"\n"
+" %(counter)s Respuesta\n"
+" "
+msgstr[1] ""
+"\n"
+" %(counter)s Respuestas\n"
+" "
#: skins/default/templates/question/answer_tab_bar.html:11
msgid "Sort by »"
@@ -5231,31 +5860,14 @@ msgstr "Ordenar por »"
msgid "oldest answers will be shown first"
msgstr "antiguar respuestas serán mostradas primero"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "antiguar respuestas"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "nuevas respuestas serán mostradas primero"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "nuevas respuestas"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "respuestas mejor valoradas serán mostradas primero"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "respuestas populares"
-
-#: skins/default/templates/question/content.html:40
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer Your Own Question"
-msgstr "Responde tu pregunta"
-
#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr "Haz Login o registrate para contestar"
@@ -5269,31 +5881,42 @@ msgid "Be the first one to answer this question!"
msgstr "Se el primero en contestar esta pregunta"
#: skins/default/templates/question/new_answer_form.html:32
-msgid "you can answer anonymously and then login"
-msgstr "tu puedes contestar anonimamente y luego ingresar"
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-msgid "answer your own question only to give an answer"
-msgstr "responder a tu pregunta sólo para dar una respuesta"
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:38
-msgid "please only give an answer, no discussions"
-msgstr "por favor intenta responder, no discutir"
-
-#: skins/default/templates/question/new_answer_form.html:45
-msgid "Login/Signup to Post Your Answer"
-msgstr "Ingresa/Registrate para publicar tu respuesta"
-
-#: skins/default/templates/question/new_answer_form.html:50
-msgid "Answer the question"
-msgstr "Responde la pregunta"
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
msgid ""
"Know someone who can answer? Share a <a href=\"%(question_url)s\">link</a> "
"to this question via"
-msgstr "Conoces a alguien que quiera responder? Compartelo el enlace de esta <a href=\"%(question_url)s\">pregunta</a> "
+msgstr ""
+"Conoces a alguien que quiera responder? Compartelo el enlace de esta <a href="
+"\"%(question_url)s\">pregunta</a> "
#: skins/default/templates/question/sharing_prompt_phrase.html:8
msgid " or"
@@ -5303,101 +5926,102 @@ msgstr " o"
msgid "email"
msgstr "email"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr "Herramientas para Preguntar"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr "haz click para dejar de seguir esta pregunta"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr "Siguiendo"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr "Dejar de seguir"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr "haz click para seguir la pregunta"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr "Seguir"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] "%(count)s followers"
msgstr[1] "%(count)s followers"
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr "enviar actualizaciones por email"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
-msgstr "<strong>Aqui</strong> podras activar las actualizaciones periodicas por email (cuando hagas login)."
+msgstr ""
+"<strong>Aqui</strong> podras activar las actualizaciones periodicas por "
+"email (cuando hagas login)."
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr "suscribirte al feed rss de esta pregunta"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr "suscribirte al feed rss"
-#: skins/default/templates/question/sidebar.html:44
+#: skins/default/templates/question/sidebar.html:46
msgid "Stats"
msgstr "Estadisticas"
-#: skins/default/templates/question/sidebar.html:46
-msgid "question asked"
-msgstr "pregunta formulada"
+#: skins/default/templates/question/sidebar.html:48
+#, fuzzy
+msgid "Asked"
+msgstr "preguntado"
-#: skins/default/templates/question/sidebar.html:49
-msgid "question was seen"
-msgstr "la pregunta ha sido vista"
+#: skins/default/templates/question/sidebar.html:51
+msgid "Seen"
+msgstr ""
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "veces"
-#: skins/default/templates/question/sidebar.html:52
-msgid "last updated"
+#: skins/default/templates/question/sidebar.html:54
+#, fuzzy
+msgid "Last updated"
msgstr "última actualización"
-#: skins/default/templates/question/sidebar.html:60
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Preguntas relacionadas"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr "Notificarme una vez al día cuando tenga nuevas respuestas"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+#, fuzzy
+msgid "Email me when there are any new answers"
msgstr "Notificarme semanalmente cuando tenga alguna nueva respuesta"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
-msgstr "<strong>Notificarme</strong> inmediatamente cuando haya cualquier nueva respuesta o actualizacion"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
+msgid "once you sign in you will be able to subscribe for any updates here"
+msgstr ""
+"una vez que inicie sesión serás capaz de suscribirte para recibir "
+"actualizaciones"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+#, fuzzy
msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr "(siempre podras <strong><a href='%(profile_url)s?sort=email_subscriptions'>cambiar</a></strong> cuando desees la frecuencia de las actualizaciones)"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
-msgid "once you sign in you will be able to subscribe for any updates here"
-msgstr "una vez que inicie sesión serás capaz de suscribirte para recibir actualizaciones"
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+"<strong>Aqui</strong> podras activar las actualizaciones periodicas por "
+"email (cuando hagas login)."
#: skins/default/templates/user_profile/user.html:12
#, python-format
@@ -5430,12 +6054,12 @@ msgstr "Usuario registrado"
msgid "Screen Name"
msgstr "Nombre para mostrar"
-#: skins/default/templates/user_profile/user_edit.html:60
+#: skins/default/templates/user_profile/user_edit.html:59
msgid "(cannot be changed)"
msgstr "(no puede modificarse)"
-#: skins/default/templates/user_profile/user_edit.html:102
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Actualizar"
@@ -5448,13 +6072,20 @@ msgstr "suscripciones"
msgid "Email subscription settings"
msgstr "Configuración de suscripciones por email"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr "información de suscripciones por email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Detener el envió de emails"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Tu email</strong> (<i>debe ser válido, nunca se mostrará a otros</i>)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5533,7 +6164,8 @@ msgid "real name"
msgstr "nombre real"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "miembro desde"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5541,8 +6173,9 @@ msgid "last seen"
msgstr "últimas visita"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr "sitio web del usuario"
+#, fuzzy
+msgid "website"
+msgstr "Sitio Web"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -5613,7 +6246,9 @@ msgstr "Enviar mensaje a %(username)s"
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 "Se enviara un mensaje al usuario con la direccion de tu email. Por favor asegurate de que tu email es correcto."
+msgstr ""
+"Se enviara un mensaje al usuario con la direccion de tu email. Por favor "
+"asegurate de que tu email es correcto."
#: skins/default/templates/user_profile/user_moderate.html:46
msgid "Message sent"
@@ -5628,13 +6263,19 @@ msgid ""
"Administrators have privileges of normal users, but in addition they can "
"assign/revoke any status to any user, and are exempt from the reputation "
"limits."
-msgstr "Los administradores tienen los mismos privilegios que los usuarios normales, pero ademas pueden asignar o resignar cualquier estado a cualquier usuario, y estan exentos de los limites en los puntos de reputacion."
+msgstr ""
+"Los administradores tienen los mismos privilegios que los usuarios normales, "
+"pero ademas pueden asignar o resignar cualquier estado a cualquier usuario, "
+"y estan exentos de los limites en los puntos de reputacion."
#: skins/default/templates/user_profile/user_moderate.html:77
msgid ""
"Moderators have the same privileges as administrators, but cannot add or "
"remove user status of 'moderator' or 'administrator'."
-msgstr "Los moderadores tienen los mismos privilegios que los administradores, pero no pueden añadir o eliminar el estado de usuario 'moderador' o 'administrador'."
+msgstr ""
+"Los moderadores tienen los mismos privilegios que los administradores, pero "
+"no pueden añadir o eliminar el estado de usuario 'moderador' o "
+"'administrador'."
#: skins/default/templates/user_profile/user_moderate.html:80
msgid "'Approved' status means the same as regular user."
@@ -5642,12 +6283,15 @@ msgstr "El estado 'aprobado' es el mismo que para un usuario normal."
#: skins/default/templates/user_profile/user_moderate.html:83
msgid "Suspended users can only edit or delete their own posts."
-msgstr "Los usuarios suspendidos solo pueden editar o eliminar sus propios posts"
+msgstr ""
+"Los usuarios suspendidos solo pueden editar o eliminar sus propios posts"
#: skins/default/templates/user_profile/user_moderate.html:86
msgid ""
"Blocked users can only login and send feedback to the site administrators."
-msgstr "Los usuarios bloqueados solo pueden hacer login y enviar su opinion a los administradores del sitio."
+msgstr ""
+"Los usuarios bloqueados solo pueden hacer login y enviar su opinion a los "
+"administradores del sitio."
#: skins/default/templates/user_profile/user_network.html:5
#: skins/default/templates/user_profile/user_tabs.html:18
@@ -5672,7 +6316,9 @@ msgstr[1] "Siguiendo %(count)s personas"
msgid ""
"Your network is empty. Would you like to follow someone? - Just visit their "
"profiles and click \"follow\""
-msgstr "Tu red esta vacia. Te gustaria seguir a alguien? Solo tienes que visitar los perfiles que desees y pinchar en \"seguir\""
+msgstr ""
+"Tu red esta vacia. Te gustaria seguir a alguien? Solo tienes que visitar los "
+"perfiles que desees y pinchar en \"seguir\""
#: skins/default/templates/user_profile/user_network.html:21
#, python-format
@@ -5680,6 +6326,7 @@ msgid "%(username)s's network is empty"
msgstr "la red de %(username)s esta vacia"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr "actividad"
@@ -5689,10 +6336,6 @@ msgstr "actividad"
msgid "source"
msgstr "fuente"
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr "karma"
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "Tu archivo de puntos karma"
@@ -5725,10 +6368,6 @@ msgstr[1] "Respuestas"
msgid "the answer has been voted for %(answer_score)s times"
msgstr "se ha votado la respuesta %(answer_score)s veces"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "esta respuesta ha sido seleccionada como la correcta"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -5781,7 +6420,7 @@ msgstr "Respuesta a:"
msgid "User profile"
msgstr "Pefil de usuario"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:630
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "comentar y responder otras preguntas"
@@ -5790,30 +6429,24 @@ msgid "followers and followed users"
msgstr "seguidores y usuarios a los que sigues"
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "grafica de la reputación de este usuario"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "historial de reputación"
-
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr "preguntas que el usuario esta siguiendo"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "actividad reciente"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:671
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "registro de votos de este usuario"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "votos emitidos"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "votos"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:761
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "configuraciones de suscripción por email"
@@ -5821,16 +6454,14 @@ msgstr "configuraciones de suscripción por email"
msgid "moderate this user"
msgstr "moderar este usuario"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "votos"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "responder tips"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "por favor intenta que tu respuesta sea relevante para la comunidad"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -5838,8 +6469,10 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr "trata de dar una respuesta, en lugar de iniciar un debate"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "intenta dar algunos detalles"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "intenta dar todos los detalles"
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -5853,7 +6486,8 @@ msgstr "mira las preguntas más frecuentes"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Markdown tips"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -5877,11 +6511,6 @@ msgid "**bold** or __bold__"
msgstr "**bold** o __bold__"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "enlace"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -5908,29 +6537,29 @@ msgstr "HTML básico es soportado"
msgid "learn more about Markdown"
msgstr "lee acerca de Markdown"
-#: skins/default/templates/widgets/ask_button.html:5
-msgid "ask a question"
-msgstr "preguntar"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr "ingresa para publicar información de la pregunta"
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
-msgstr "<span class='strong big'>Tu email, %(email)s no ha sido validado todavia.</span> Para enviar mensajes debes verificar tu email, por favor lee <a href='%(email_validation_faq_url)s'>mas detalles aqui</a>.<br>Puedes enviar una pregunta ahora y validar el email despues de enviarla. Tu pregunta se guardara como pendiente mientras tanto. "
-
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Ingresa/registrate para publicar tu pregunta"
+"<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."
+msgstr ""
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Formula tu pregunta"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -5975,17 +6604,10 @@ msgstr "usuarios"
msgid "badges"
msgstr "medallas"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "tips para preguntar"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "por favor, haz que tu pregunta sea relevante"
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "intenta dar todos los detalles"
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr "por favor intenta que tu respuesta sea relevante para la comunidad"
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
@@ -6038,20 +6660,23 @@ msgid "badges:"
msgstr "medallas:"
#: skins/default/templates/widgets/user_navigation.html:9
-msgid "logout"
-msgstr "salir"
+#, fuzzy
+msgid "sign out"
+msgstr "eliminar-cuenta/"
#: skins/default/templates/widgets/user_navigation.html:12
-msgid "login"
-msgstr "ingresar"
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "Por favor regístrate aquí:"
#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr "ajustes"
#: templatetags/extra_filters_jinja.py:279
-msgid "no items in counter"
-msgstr "no"
+#, fuzzy
+msgid "no"
+msgstr "ninguno"
#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
@@ -6070,7 +6695,8 @@ msgid "this field is required"
msgstr "este campo es requerido"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "seleccione un nombre de usuario"
#: utils/forms.py:69
@@ -6083,7 +6709,8 @@ msgstr "lo sentimos, el nombre que haz elegido ya esta usado, selecciona otro"
#: utils/forms.py:71
msgid "sorry, this name is not allowed, please choose another"
-msgstr "lo sentimos, el nombre que haz elegido no está permitido, seleciona otro"
+msgstr ""
+"lo sentimos, el nombre que haz elegido no está permitido, seleciona otro"
#: utils/forms.py:72
msgid "sorry, there is no user with this name"
@@ -6091,19 +6718,23 @@ msgstr "los sentimos, no hay usuarios con este nombre"
#: utils/forms.py:73
msgid "sorry, we have a serious error - user name is taken by several users"
-msgstr "lo sentimos, tenermos un serio error - el nombre de usuario ha sido tomado por varios usuarios"
+msgstr ""
+"lo sentimos, tenermos un serio error - el nombre de usuario ha sido tomado "
+"por varios usuarios"
#: utils/forms.py:74
msgid "user name can only consist of letters, empty space and underscore"
-msgstr "nombre de usuario sólo puede constar de letras, espacio vacío y subrayado"
+msgstr ""
+"nombre de usuario sólo puede constar de letras, espacio vacío y subrayado"
#: utils/forms.py:75
msgid "please use at least some alphabetic characters in the user name"
-msgstr "por favor utiliza al menos alguna letra del alfabeto en el nombre de usuario"
+msgstr ""
+"por favor utiliza al menos alguna letra del alfabeto en el nombre de usuario"
#: utils/forms.py:138
-msgid "your email address"
-msgstr "tu dirección de email"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6115,19 +6746,16 @@ msgstr "ingresa una dirección de email valida"
#: utils/forms.py:141
msgid "this email is already used by someone else, please choose another"
-msgstr "este email está siendo utilizado por algún usuario, por favor selecciona otro"
-
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "seleccionar contraseña"
+msgstr ""
+"este email está siendo utilizado por algún usuario, por favor selecciona otro"
#: utils/forms.py:170
msgid "password is required"
msgstr "una contraseña es requerida"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "re-escribir contraseña"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6135,7 +6763,8 @@ msgstr "por favor, re-escribe tu contraseña"
#: utils/forms.py:175
msgid "sorry, entered passwords did not match, please try again"
-msgstr "lo sentimos, las contraseñas que haz ingresado no coinciden, intenta de nuevo"
+msgstr ""
+"lo sentimos, las contraseñas que haz ingresado no coinciden, intenta de nuevo"
#: utils/functions.py:82
msgid "2 days ago"
@@ -6159,6 +6788,51 @@ msgid_plural "%(min)d mins ago"
msgstr[0] "hace %(min)d minuto"
msgstr[1] "hace %(min)d minutos"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+"<p>Para preguntar por email, por favor:</p>\n"
+"<ul>\n"
+" <li>Formatea el asunto como: [Tag1; Tag2] Titulo de la pregunta</li>\n"
+" <li>Escribe los detalles de tu pregunta en el cuerpo del mensaje de "
+"email</li>\n"
+"</ul>\n"
+"<p>Nota: las etiquetas pueden ser más de una palabra y pueden estar "
+"separadas por una coma o un punto y coma</p>\n"
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+"<p>Lo sentimos, ha habido un error enviando tu pregunta, por favor, contacta "
+"con el administrador de %(site)s</p>"
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+"<p>Lo sentimos, para enviar preguntas en %(site)s por email, por favor<a "
+"href=\"%(url)s\">regístrate primero</a></p>"
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+"<p>Lo sentimos, tu pregunta no puede ser enviada porque no existen "
+"suficiente privilegios en tu cuenta</p>"
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr "Avatar subido con éxito"
@@ -6173,139 +6847,156 @@ msgstr "Avatares eliminados con éxito"
#: views/commands.py:83
msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "Lo sentimos, pero los usuarios anónimos no pueden acceder a la mensajería"
+msgstr ""
+"Lo sentimos, pero los usuarios anónimos no pueden acceder a la mensajería"
-#: views/commands.py:111
-msgid "anonymous users cannot vote"
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "usuarios anónimos no pueden votar"
-#: views/commands.py:127
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "Lo sentimos, te has quedado sin votos por hoy"
-#: views/commands.py:133
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Te quedan %(votes_left)s votos por hoy"
-#: views/commands.py:208
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "Lo sentimos, algo no va bien aquí"
-#: views/commands.py:227
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "Lo sentimos, pero los usuarios anónimos no pueden aceptar respuestas"
-#: views/commands.py:336
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
-msgstr "subscrición guardada, necesitamos una validación de %(email)s , mira %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
+msgstr ""
+"subscrición guardada, necesitamos una validación de %(email)s , mira "
+"%(details_url)s"
-#: views/commands.py:343
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "la frecuencia de notificaciones por email ha sido cambiada a diario"
-#: views/commands.py:449
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
-msgstr "La suscripción a la etiqueta se ha cancelado (<a href=\"%(url)s\">deshacer</a>)."
+msgstr ""
+"La suscripción a la etiqueta se ha cancelado (<a href=\"%(url)s\">deshacer</"
+"a>)."
-#: views/commands.py:458
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr "Por favor, regístrate para poder suscribirte a %(tags)s"
-#: views/commands.py:584
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr "Por favor, regístrate para votar"
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Por favor, regístrate para votar"
+
#: views/meta.py:37
#, python-format
msgid "About %(site)s"
msgstr "Sobre %(site)s"
-#: views/meta.py:86
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Foro de sugerencias"
-#: views/meta.py:87
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Gracias por tus sugerencias"
-#: views/meta.py:96
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr "Esperamos con interés escuchar sus comentarios! :)"
-#: views/meta.py:100
+#: views/meta.py:106
msgid "Privacy policy"
msgstr "Políticas de privacidad"
-#: views/readers.py:134
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s pregunta, etiquetada"
msgstr[1] "%(q_num)s preguntas, etiquetadas"
-#: views/readers.py:366
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
-msgstr "Lo sentimos, el comentario que estás buscando se ha eliminado y no se encuentra disponible"
+msgstr ""
+"Lo sentimos, el comentario que estás buscando se ha eliminado y no se "
+"encuentra disponible"
#: views/users.py:206
msgid "moderate user"
msgstr "moderar usuario"
-#: views/users.py:373
+#: views/users.py:381
msgid "user profile"
msgstr "perfil de usuario"
-#: views/users.py:374
+#: views/users.py:382
msgid "user profile overview"
msgstr "vista del perfil de usuario"
-#: views/users.py:543
+#: views/users.py:551
msgid "recent user activity"
msgstr "actividad reciente del usuario"
-#: views/users.py:544
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "perfil - actividad reciente"
-#: views/users.py:631
+#: views/users.py:639
msgid "profile - responses"
msgstr "perfil - respuestas"
-#: views/users.py:672
+#: views/users.py:680
msgid "profile - votes"
msgstr "pefil - votos"
-#: views/users.py:693
-msgid "user reputation in the community"
-msgstr "reputación del usuario en la comunidad"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr "karma"
-#: views/users.py:694
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "perfil - reputación del usuario"
-#: views/users.py:712
+#: views/users.py:720
msgid "users favorite questions"
msgstr "preguntas favoritas del usuario"
-#: views/users.py:713
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "pefil - preguntas favoritas"
-#: views/users.py:733 views/users.py:737
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "cambios guardados"
-#: views/users.py:743
+#: views/users.py:751
msgid "email updates canceled"
msgstr "notificaciones por email cancelada"
-#: views/users.py:762
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "perfil - notificación por email"
@@ -6313,78 +7004,559 @@ msgstr "perfil - notificación por email"
msgid "Sorry, anonymous users cannot upload files"
msgstr "Lo sentimos, los usuarios anónimos no pueden subir archivos"
-#: views/writers.py:70
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "los ficheros permitidos son '%(file_types)s'"
-#: views/writers.py:90
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "el tamaño máximo para subir archivos es de %(file_size)sK"
-#: views/writers.py:98
-msgid ""
-"Error uploading file. Please contact the site administrator. Thank you."
-msgstr "Error subiendo archivo. Por favor, contacta con el administrador del sitio. Gracias"
+#: views/writers.py:92
+msgid "Error uploading file. Please contact the site administrator. Thank you."
+msgstr ""
+"Error subiendo archivo. Por favor, contacta con el administrador del sitio. "
+"Gracias"
-#: views/writers.py:204
-msgid "Please log in to ask questions"
-msgstr "<span class=\"strong big\">Bienvenido, puedes enviar tu pregunta de forma anónima</span>. Cuando envíes la pregunta, serás redirigido a la página de login o registro. Tu pregunta será guardada en la sesión actual y será publicada después de que hagas login. Hacer login o registro es muy fácil y sólo te tomará 30 segundos."
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:469
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr "Por favor, haz login para responder preguntas"
-#: views/writers.py:575
+#: views/writers.py:572
#, 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 "Lo sentimos, estás desconectado y no puedes enviar comentarios. Por favor <a href=\"%(sign_in_url)s\">regístrate</a>."
+"Sorry, you appear to be logged out and cannot post comments. Please <a href="
+"\"%(sign_in_url)s\">sign in</a>."
+msgstr ""
+"Lo sentimos, estás desconectado y no puedes enviar comentarios. Por favor <a "
+"href=\"%(sign_in_url)s\">regístrate</a>."
-#: views/writers.py:592
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr "Lo sentimos, los usuarios anónimos no pueden editar comentarios."
-#: views/writers.py:622
+#: views/writers.py:619
#, 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 "Lo sentimos, estás desconectado y no puedes eliminar comentarios. Por favor, <a href=\"%(sign_in_url)s\">regístrate</a>."
+msgstr ""
+"Lo sentimos, estás desconectado y no puedes eliminar comentarios. Por favor, "
+"<a href=\"%(sign_in_url)s\">regístrate</a>."
-#: views/writers.py:642
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "lo sentimos, tenemos dificultades técnicas"
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "usa-estos-caracteres-en-las-etiquetas"
+
+#~ msgid "URL for the LDAP service"
+#~ msgstr "URL del servicio LDAP"
+
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Explicar cómo cambiar el password LDAP"
+
+#~ msgid "question_answered"
+#~ msgstr "pregunta respondida"
+
+#~ msgid "question_commented"
+#~ msgstr "pregunta comentada"
+
+#~ msgid "answer_commented"
+#~ msgstr "respuesta_ comentada"
+
+#~ msgid "answer_accepted"
+#~ msgstr "respuesta_aceptada"
+
+#~ msgid "Incorrect username."
+#~ msgstr "lo siento, no existe el nombre de usuario"
+
+#~ msgid ""
+#~ "This command may help you migrate to LDAP password authentication by "
+#~ "creating a record for LDAP association with each user account. There is "
+#~ "an assumption that ldap user id's are the same as user names registered "
+#~ "at the site. Before running this command it is necessary to set up LDAP "
+#~ "parameters in the \"External keys\" section of the site settings."
+#~ msgstr ""
+#~ "Este comando puede ayudarte a migrar el sistema de autentificación de "
+#~ "contraseñas LDAP creando un registro de asociación con cada cuenta de "
+#~ "usaurio. Se supone que el user id de LDAP es el mismo que los usuarios "
+#~ "registrados en el sitio. Antes de ejecutar este comando es necesario "
+#~ "configurar los parámetros de LDAP en la sección \"Llaves externas\" de "
+#~ "los ajustes del sitio."
+
+#~ 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>Hola %(name)s,</p><p>Se ha actualizado la siguiente pregunta en el "
+#~ "sitio:</p>"
+#~ msgstr[1] ""
+#~ "<p>Hola %(name)s,</p><p>Se han actualizado las siguientes %(num)d "
+#~ "preguntas en el sitio:</p>"
+
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "<p>Por favor, recuerda que siempre puedes <a "
+#~ "href='%(email_settings_link)s'>adjustar</a> la frecuencia de las "
+#~ "actualizaciones al email o desactivarlas completamente.<br/>Si piensas "
+#~ "que este mensaje te ha llegado por error, por favor, envíalo al "
+#~ "administrador del sitio a %(admin_email)s.</p><p>Saludos,</p>"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr "Lo sentimos, subir ficheros requiere un karma mayor de %(min_rep)s"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr ""
+#~ "Lo sentimos, tu cuenta parece estar bloqueada y no puedes enviar nuevos "
+#~ "posts hasta que este problema se resuelva. Por favor, contacta con el "
+#~ "administrador para llegar a una solución."
+
+#~ msgid "suspended users cannot post"
+#~ msgstr ""
+#~ "Lo sentimos, tu cuenta parece estar suspendida y no puedes enviar nuevos "
+#~ "posts hasta que este problema se resuelva. Por favor, contacta con el "
+#~ "administrador para llegar a una solución."
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr "Has denunciado esta pregunta antes y no puedes hacerlo otra vez"
+
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr ""
+#~ "Lo sentimos, debido a que tu cuenta está bloqueada no puedes denunciar "
+#~ "posts como ofensivos"
+
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr ""
+#~ "Lo sentimos, debido a que tu cuenta está suspendida no puedes crear "
+#~ "nuevos posts hasta que se resuelva este problema. Sin embargo, si puedes "
+#~ "editar tus posts existentes. Por favor contacta con el administrador para "
+#~ "llegar a una solución."
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr ""
+#~ "Lo sentimos, para denunciar posts como ofensivos es necesario tener un "
+#~ "mínimo de %(min_rep)s puntos de reputación "
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr ""
+#~ "Lo siento, has alcanzado el número máximo de %(max_flags_per_day)s "
+#~ "denuncias por día."
+
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr ""
+#~ "Lo sentimos, debido a que tu cuenta está bloqueada no puedes eliminar "
+#~ "denuncias"
+
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr ""
+#~ "Lo sentimos, tu cuenta ha sido suspendida y no puedes eliminar denuncias. "
+#~ "Por favor, contacta con el administrador del sitio para llegar a una "
+#~ "solución."
+
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] ""
+#~ "Lo sentimos, para denunciar un post se necesira un mínimo de %(min_rep)d "
+#~ "puntos de reputación"
+#~ msgstr[1] ""
+#~ "Lo sentimos, para denunciar un post se necesira un mínimo de %(min_rep)d "
+#~ "puntos de reputación"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "no puede revocar un voto viejo"
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Introduce el nuevo email en la caja de abajo</"
+#~ "span> si quieres utilizar otro email para <strong>actualizar tus "
+#~ "suscripciones</strong>.<br>Ahora estás usando este email: <strong>"
+#~ "%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Introduce tu email en la caja de abajo.</span> "
+#~ "Es necesario que introduzcas un email válido. Si quieres puedes "
+#~ "<strong>recibir actualizaciones</strong> de preguntas interesantes vía "
+#~ "email. También puedes utilizar tu email para crear tu <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>. Tu dirección "
+#~ "de correo no se mostrará a terceros y no la compartiremos con nadie."
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Tu nuevo Email:</strong> (no <strong>será</strong> mostrado a "
+#~ "nadie, debe ser válido)"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Hemos enviado un email de validación a "
+#~ "%(email)s.</span> Por favor <strong>comprueba el email enviado</strong> "
+#~ "con tu navegador. Es necesario que validemos tu email para asegurarlos "
+#~ "que realizas un uso correcto de tu cuenta en este sitio. Si quieres "
+#~ "utilizar <strong>otro email</strong>, por favor<a "
+#~ "href='%(change_email_url)s'><strong>cámbialo desde aquí</strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Tu email %(email)s no ha sido modificado.</"
+#~ "span> Si decides cambiarlo más tarde - siempre puedes hacerlo editándolo "
+#~ "en tu perfil o usando el anterior <a "
+#~ "href='%(change_email_url)s'><strong>formulario</strong></a> otra vez."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Tu email se ha modificado a %(email)s.</span> "
+#~ "Las actualizaciones a las preguntas que más te gustan serán enviadas a "
+#~ "este email. Las notificaciones de email se envían una vez al día o con "
+#~ "menos frecuencia, sólo cuando hay actualizaciones."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Gracias por verificar tu email!</span> Ahora "
+#~ "puedes <strong>preguntar</strong> y <strong>contestar</strong> preguntas. "
+#~ "También puedes <strong>suscribirte</strong> a preguntas que consideres "
+#~ "interesantes y te notificaremos sobre los cambios <strong>una vez al día</"
+#~ "strong> o menos."
+
+#~ msgid "email key not sent"
+#~ msgstr "Validación de email no enviada"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Tu email actual %(email)s ya ha sido validado</"
+#~ "span> por tanto la nueva clave no se ha enviado. Puedes <a "
+#~ "href='%(change_link)s'>cambiar</a> tu email utilizado para las "
+#~ "suscripciones cuando lo desees."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Esta es tu primera vez aquí con el login de "
+#~ "%(provider)s.</span> Por favor, crea tu <strong>usuario</strong> y guarda "
+#~ "tu <strong>email</strong>. El email te permitirá <strong>suscribirte a "
+#~ "las actualizaciones</strong> de las preguntas más interesantes y será "
+#~ "usada para crear y recuperar tu imagen de <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<p><span class='strong big'>Ups... parece que tu nombre de usuario "
+#~ "%(username)s ya ha sido registrado.</span></p><p>Por favor elige otro "
+#~ "nombre de usuario para utilizar en tu cuenta de %(provider)s. Debes "
+#~ "introducir un correo válido para darte de alta en este sitio. Tu email "
+#~ "será utilizado para crear un <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> con imagen en "
+#~ "tu cuenta. Si lo deseas puedes <strong>recibir actualizaciones</strong> "
+#~ "de las preguntas más interesantes por email. Bajo ningún concepto los "
+#~ "emails se mostrarán a terceros ni se compartirán con ningún otro fin.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Esta es tu primera vez en %(provider)s.</"
+#~ "span></p><p>Puedes guardar tu <strong>nombre de usuario</strong> y "
+#~ "también tu cuenta de %(provider)s o elegir otro apodo.</p><p>Debes "
+#~ "introducir un correo válido para darte de alta en este sitio. Tu email "
+#~ "será utilizado para crear un <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> con imagen en "
+#~ "tu cuenta. .</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Esta es tu primera vez con el login de "
+#~ "Facebook.</span> Por favor, crea tu <strong>nombre de usuario</strong> y "
+#~ "guarda tu dirección de <strong>email</strong>. Debes introducir un correo "
+#~ "válido para darte de alta en este sitio. Tu email será utilizado para "
+#~ "crear un <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> con "
+#~ "imagen en tu cuenta. .</p>"
+
+#~ msgid "This account already exists, please use another."
+#~ msgstr "Esta cuenta ya existe, por favor use otra."
+
+#~ msgid "Screen name label"
+#~ msgstr "Nombre de usuario"
+
+#~ msgid "Email address label"
+#~ msgstr "Dirección de correo electrónico"
+
+#~ msgid "receive updates motivational blurb"
+#~ msgstr "recibir actualizaciones de motivación"
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr ""
+#~ "Una herramienta para filtrar por etiquetas será mostrada cuando ingreses"
+
+#~ msgid "create account"
+#~ msgstr "crear cuenta"
+
+#~ msgid "Login"
+#~ msgstr "Registro"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "Por que usar OpenID?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "con OpenID es más fácil"
+
+#~ msgid "reuse openid"
+#~ msgstr "re-usar openid"
+
+#~ msgid "openid is widely adopted"
+#~ msgstr "openID es ampliamente adoptado"
+
+#~ msgid "openid is supported open standard"
+#~ msgstr "openID es un estándar abierto"
+
+#~ msgid "Find out more"
+#~ msgstr "Para saber más"
+
+#~ msgid "Get OpenID"
+#~ msgstr "Obetener OpenID"
+
+#~ msgid "Traditional signup info"
+#~ msgstr "Registro tradicional"
+
+#~ msgid "Create Account"
+#~ msgstr "Crear cuenta"
+
+#~ msgid "answer permanent link"
+#~ msgstr "enlace permanente a esta respuesta"
+
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "%(question_author)s ha seleccionado tu respuesta como correcta"
+
+#~ msgid "Related tags"
+#~ msgstr "Etiquetas relacionadas"
+
+#~ msgid "Ask a question"
+#~ msgstr "Formula una pregunta"
+
+#~ msgid "Badges summary"
+#~ msgstr "Resúmen de medallas"
+
+#~ msgid "gold badge description"
+#~ msgstr "descripción de la medalla de oro"
+
+#~ msgid "silver badge description"
+#~ msgstr "descripción de la medalla de plata"
+
+#~ msgid "bronze badge description"
+#~ msgstr "descripción de la medalla de bronce"
+
+#~ 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 ""
+#~ "es un un sitio de Preguntas y Respuestas, no un grupo de discusión. Si "
+#~ "quieres discutir, hazlo en los comentarios sobrelas respuestas."
+
+#~ msgid "Rep system summary"
+#~ msgstr "Resumen de reputación del sistema"
+
+#~ msgid "what is gravatar"
+#~ msgstr "que es gravatar"
+
+#~ msgid "gravatar faq info"
+#~ msgstr "información de gravatar"
+
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "me gusta esta pregunta (haz click de nuevo para cancelar)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "me gusta esta respuesta (clic de nuevo para cancelar)"
+
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "no me gusta esta pregunta (haz click de nuevo para cancelar)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "no me gusta esta respuesta (clic de nuevo para cancelar)"
+
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] ""
+#~ "ver <strong>%(counter)s</strong> comentario mas\n"
+#~ " "
+#~ msgstr[1] ""
+#~ "ver <strong>%(counter)s</strong> comentarios mas\n"
+#~ " "
+
+#~ msgid "Change tags"
+#~ msgstr "Cambiar etiquetas"
+
+#~ msgid "reputation"
+#~ msgstr "reputación"
+
+#~ msgid "oldest answers"
+#~ msgstr "antiguar respuestas"
+
+#~ msgid "newest answers"
+#~ msgstr "nuevas respuestas"
+
+#~ msgid "popular answers"
+#~ msgstr "respuestas populares"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr "tu puedes contestar anonimamente y luego ingresar"
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr "responder a tu pregunta sólo para dar una respuesta"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr "por favor intenta responder, no discutir"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Ingresa/Registrate para publicar tu respuesta"
+
+#~ msgid "Answer the question"
+#~ msgstr "Responde la pregunta"
+
+#~ msgid "question asked"
+#~ msgstr "pregunta formulada"
+
+#~ msgid "question was seen"
+#~ msgstr "la pregunta ha sido vista"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr "Notificarme una vez al día cuando tenga nuevas respuestas"
+
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Notificarme</strong> inmediatamente cuando haya cualquier nueva "
+#~ "respuesta o actualizacion"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr ""
+#~ "(siempre podras <strong><a href='%(profile_url)s?"
+#~ "sort=email_subscriptions'>cambiar</a></strong> cuando desees la "
+#~ "frecuencia de las actualizaciones)"
+
+#~ msgid "email subscription settings info"
+#~ msgstr "información de suscripciones por email"
+
+#~ msgid "Stop sending email"
+#~ msgstr "Detener el envió de emails"
+
+#~ msgid "user website"
+#~ msgstr "sitio web del usuario"
+
+#~ msgid "reputation history"
+#~ msgstr "historial de reputación"
+
+#~ msgid "recent activity"
+#~ msgstr "actividad reciente"
+
+#~ msgid "casted votes"
+#~ msgstr "votos emitidos"
+
+#~ msgid "answer tips"
+#~ msgstr "responder tips"
+
+#~ msgid "please try to provide details"
+#~ msgstr "intenta dar algunos detalles"
+
+#~ msgid "ask a question"
+#~ msgstr "preguntar"
+
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ " see %(email_validation_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<span class='strong big'>Tu email, %(email)s no ha sido validado todavia."
+#~ "</span> Para enviar mensajes debes verificar tu email, por favor lee <a "
+#~ "href='%(email_validation_faq_url)s'>mas detalles aqui</a>.<br>Puedes "
+#~ "enviar una pregunta ahora y validar el email despues de enviarla. Tu "
+#~ "pregunta se guardara como pendiente mientras tanto. "
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Ingresa/registrate para publicar tu pregunta"
+
+#~ msgid "question tips"
+#~ msgstr "tips para preguntar"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "por favor, haz que tu pregunta sea relevante"
+
+#~ msgid "logout"
+#~ msgstr "salir"
+
+#~ msgid "login"
+#~ msgstr "ingresar"
+
+#~ msgid "no items in counter"
+#~ msgstr "no"
+
+#~ msgid "your email address"
+#~ msgstr "tu dirección de email"
+
+#~ msgid "choose password"
+#~ msgstr "seleccionar contraseña"
+
+#~ msgid "retype password"
+#~ msgstr "re-escribir contraseña"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "reputación del usuario en la comunidad"
+
+#~ msgid "Please log in to ask questions"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Bienvenido, puedes enviar tu pregunta de forma "
+#~ "anónima</span>. Cuando envíes la pregunta, serás redirigido a la página "
+#~ "de login o registro. Tu pregunta será guardada en la sesión actual y será "
+#~ "publicada después de que hagas login. Hacer login o registro es muy fácil "
+#~ "y sólo te tomará 30 segundos."
+
#~ msgid ""
-#~ "As a registered user you can login with your OpenID, log out of the site or "
-#~ "permanently remove your account."
+#~ "As a registered user you can login with your OpenID, log out of the site "
+#~ "or permanently remove your account."
#~ msgstr ""
#~ "Clicking <strong>Logout</strong> will log you out from the forum but will "
#~ "not sign you off from your OpenID provider.</p><p>If you wish to sign off "
-#~ "completely - please make sure to log out from your OpenID provider as well."
+#~ "completely - please make sure to log out from your OpenID provider as "
+#~ "well."
#~ msgid "Email verification subject line"
#~ msgstr "Verification Email from Q&A forum"
#~ msgid ""
-#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s"
+#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)"
+#~ "s"
#~ msgstr ""
-#~ "<form style='margin:0;padding:0;' action='%(send_email_key_url)s'><p><span "
-#~ "class=\"bigger strong\">How?</span> If you have just set or changed your "
-#~ "email address - <strong>check your email and click the included "
-#~ "link</strong>.<br>The link contains a key generated specifically for you. "
-#~ "You can also <button style='display:inline' type='submit'><strong>get a new "
-#~ "key</strong></button> and check your email again.</p></form><span "
-#~ "class=\"bigger strong\">Why?</span> Email validation is required to make "
-#~ "sure that <strong>only you can post messages</strong> on your behalf and to "
-#~ "<strong>minimize spam</strong> posts.<br>With email you can "
-#~ "<strong>subscribe for updates</strong> on the most interesting questions. "
-#~ "Also, when you sign up for the first time - create a unique <a "
-#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> personal "
-#~ "image.</p>"
+#~ "<form style='margin:0;padding:0;' action='%(send_email_key_url)"
+#~ "s'><p><span class=\"bigger strong\">How?</span> If you have just set or "
+#~ "changed your email address - <strong>check your email and click the "
+#~ "included link</strong>.<br>The link contains a key generated specifically "
+#~ "for you. You can also <button style='display:inline' "
+#~ "type='submit'><strong>get a new key</strong></button> and check your "
+#~ "email again.</p></form><span class=\"bigger strong\">Why?</span> Email "
+#~ "validation is required to make sure that <strong>only you can post "
+#~ "messages</strong> on your behalf and to <strong>minimize spam</strong> "
+#~ "posts.<br>With email you can <strong>subscribe for updates</strong> on "
+#~ "the most interesting questions. Also, when you sign up for the first time "
+#~ "- create a unique <a href='%(gravatar_faq_url)s'><strong>gravatar</"
+#~ "strong></a> personal image.</p>"
#~ msgid "reputation points"
#~ msgstr "karma"
diff --git a/askbot/locale/es/LC_MESSAGES/djangojs.po b/askbot/locale/es/LC_MESSAGES/djangojs.po
index 6a7d9dc0..a9528c80 100644
--- a/askbot/locale/es/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/es/LC_MESSAGES/djangojs.po
@@ -1,25 +1,26 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Victor Trujillo <>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
-"Report-Msgid-Bugs-To: http://askbot.org/\n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-04-18 18:51-0500\n"
"PO-Revision-Date: 2012-03-13 16:26+0000\n"
"Last-Translator: Victor Trujillo <>\n"
-"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/askbot/language/es/)\n"
+"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/"
+"askbot/language/es/)\n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr "Seguro que quieres eliminar el login de %s?"
@@ -31,44 +32,46 @@ msgstr "Por favor, añade uno o más métodos de login."
msgid ""
"You don't have a method to log in right now, please add one or more by "
"clicking any of the icons below."
-msgstr "No tienes un método de login en este momento, por favor añade uno o más haciendo click en los iconos de abajo."
+msgstr ""
+"No tienes un método de login en este momento, por favor añade uno o más "
+"haciendo click en los iconos de abajo."
#: skins/common/media/jquery-openid/jquery.openid.js:135
msgid "passwords do not match"
msgstr "las contraseñas no coinciden"
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr "Mostrar/cambiar los métodos de login actuales"
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr "Por favor introduce tu %s, y luego procede"
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr "Conéctate con la cuenta de %(provider_name)s a %(site)s"
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr "Cambia la contraseña de %s"
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr "Cambiar la contraseña"
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr "Crear contraseña para %s"
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr "Crear contraseña"
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr "Crear una cuenta protegida con contraseña"
@@ -76,146 +79,77 @@ msgstr "Crear una cuenta protegida con contraseña"
msgid "loading..."
msgstr "cargando..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "las etiquetas no pueden estar vacías"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "el contenido no puede estar vacío"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "por favor introduzca mas de %s caracteres"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "por favor ingrese un título"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "por favor introduzca al menos %s caracteres"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "privilegio insuficiente"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "no puede escoger su propia respuesta como la mejor"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "por favor inicie sesión"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr "usuarios anónimos no pueden seguir preguntas"
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr "usuarios anónimos no pueden suscribirse a preguntas"
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "usuarios anónimos no pueden votar"
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr "por favor confirme ofensiva"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr "por favor confirme ofensiva"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "usuarios anónimos no pueden marcar publicaciones como ofensivas"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "¿Está seguro que desea borrar esto?"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "usuarios anónimos no pueden borrar o recuperar publicaciones"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "publicación recuperada"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "publicación borrada。"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "Seguir"
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] "%s seguidor"
-msgstr[1] "%s seguidores"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>Siguiendo</div><div class=\"unfollow\">Dejar de Seguir</div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "recuperar"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "borrar"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "agregar comentario"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "guardar comentario"
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "%s caracteres faltantes"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "%s caracteres faltantes"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr "cancelar"
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "seguro que no quieres enviar este comentario?"
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "borrar este comentario"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "¿Realmente desea borrar este comentario?"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "Por favor introduce el titulo de la pregunta (> de 10 letras)"
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "Eriqueta \"<span></span>\" corresponde:"
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "y %s más, no mostradas..."
@@ -229,114 +163,180 @@ msgid_plural "Delete these notifications?"
msgstr[0] "Eliminar esta notificación?"
msgstr[1] "Eliminar estas notificaciones?"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "borrar este comentario"
+msgstr[1] "borrar este comentario"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "borrar este comentario"
+msgstr[1] "borrar este comentario"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
-msgstr "Por favor <a href=\"%(signin_url)s\">regístrate</a> para seguir a %(username)s"
+msgstr ""
+"Por favor <a href=\"%(signin_url)s\">regístrate</a> para seguir a %(username)"
+"s"
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "dejar de seguir %s"
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "siguiendo %s"
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "seguir %s"
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "haz click para cerrar"
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "haz click para editar este comentario"
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "editar"
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr "ver preguntas etiquetadas '%s'"
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "negrita"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "cursiva"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "enlace"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "citar"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "texto preformateado"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "imagen"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr "fichero adjunto"
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "lista numerada"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "lista no numerada"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "encabezado"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "barra horizontal"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "deshacer"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "rehacer"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
-msgstr "introduzca la URL de la imagen, por ejemplo:<br />http://www.example.com/image.jpg \"titulo de imagen\""
+msgstr ""
+"introduzca la URL de la imagen, por ejemplo:<br />http://www.example.com/"
+"image.jpg \"titulo de imagen\""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
-msgstr "introduzca direcciones web, ejemplo:<br />http://www.cnprog.com/ \"titulo del enlace\"</p>"
+msgstr ""
+"introduzca direcciones web, ejemplo:<br />http://www.cnprog.com/ \"titulo "
+"del enlace\"</p>"
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "Por favor, selecciona y sube un archivo:"
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr "descripción de la imagen"
+#~ msgid "tags cannot be empty"
+#~ msgstr "las etiquetas no pueden estar vacías"
+
+#~ msgid "content cannot be empty"
+#~ msgstr "el contenido no puede estar vacío"
+
+#~ msgid "%s content minchars"
+#~ msgstr "por favor introduzca mas de %s caracteres"
+
+#~ msgid "please enter title"
+#~ msgstr "por favor ingrese un título"
+
+#~ msgid "%s title minchars"
+#~ msgstr "por favor introduzca al menos %s caracteres"
+
+#~ msgid "Follow"
+#~ msgstr "Seguir"
+
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] "%s seguidor"
+#~ msgstr[1] "%s seguidores"
+
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr "<div>Siguiendo</div><div class=\"unfollow\">Dejar de Seguir</div>"
+
+#~ msgid "undelete"
+#~ msgstr "recuperar"
+
+#~ msgid "delete"
+#~ msgstr "borrar"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "%s caracteres faltantes"
+
+#~ msgid "%s characters left"
+#~ msgstr "%s caracteres faltantes"
+
+#~ msgid "cancel"
+#~ msgstr "cancelar"
+
+#~ msgid "confirm abandon comment"
+#~ msgstr "seguro que no quieres enviar este comentario?"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "¿Realmente desea borrar este comentario?"
+
+#~ msgid "click to edit this comment"
+#~ msgstr "haz click para editar este comentario"
+
+#~ msgid "edit"
+#~ msgstr "editar"
+
+#~ msgid "see questions tagged '%s'"
+#~ msgstr "ver preguntas etiquetadas '%s'"
+
+#~ msgid "image description"
+#~ msgstr "descripción de la imagen"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr "nombre del archivo"
+#~ msgid "file name"
+#~ msgstr "nombre del archivo"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr "texto del enlace"
+#~ msgid "link text"
+#~ msgstr "texto del enlace"
diff --git a/askbot/locale/fi/LC_MESSAGES/django.po b/askbot/locale/fi/LC_MESSAGES/django.po
index 32e53a12..51c8bbdd 100644
--- a/askbot/locale/fi/LC_MESSAGES/django.po
+++ b/askbot/locale/fi/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# English translation for CNPROG package.
# Copyright (C) 2009 Gang Chen, 2010 Askbot
# This file is distributed under the same license as the CNPROG package.
-#
+#
# Translators:
# Evgeny Fadeev <evgeny.fadeev@gmail.com>, 2009.
# Hannu Sehm <hannu@kipax.fi>, 2012.
@@ -9,15 +9,16 @@
msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
-"Report-Msgid-Bugs-To: http://askbot.org/\n"
-"POT-Creation-Date: 2012-02-21 16:37-0600\n"
-"PO-Revision-Date: 2012-03-14 09:49+0000\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-04-18 18:50-0500\n"
+"PO-Revision-Date: 2012-03-15 13:54+0000\n"
"Last-Translator: Hannu Sehm <hannu@kipax.fi>\n"
-"Language-Team: Finnish (http://www.transifex.net/projects/p/askbot/language/fi/)\n"
+"Language-Team: Finnish (http://www.transifex.net/projects/p/askbot/language/"
+"fi/)\n"
+"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#: exceptions.py:13
@@ -59,24 +60,33 @@ msgstr "otsikko"
msgid "please enter a descriptive title for your question"
msgstr "kirjoita kuvaava otsikko kysymyksellesi"
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "Otsikon on oltava > %d merkin pituinen"
msgstr[1] "Otsikon on oltava > %d merkin pituinen"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "sisältö"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "tagit"
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -84,245 +94,290 @@ msgid ""
msgid_plural ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tags can "
"be used."
-msgstr[0] "Tagit ovat lyhyitä avainsanoja ilman välejä. Voit käyttää enintään %(max_tags)d tagiä."
-msgstr[1] "Tagit ovat lyhyitä avainsanoja ilman välejä. Voit käyttää enintään %(max_tags)d tagiä."
-
-#: forms.py:201 skins/default/templates/question_retag.html:58
+msgstr[0] ""
+"Tagit ovat lyhyitä avainsanoja ilman välejä. Voit käyttää enintään "
+"%(max_tags)d tagiä."
+msgstr[1] ""
+"Tagit ovat lyhyitä avainsanoja ilman välejä. Voit käyttää enintään "
+"%(max_tags)d tagiä."
+
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "tagit ovat pakollisia"
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
-msgstr[0] "käytä vähintään <span class=\"hidden\">%(tag_count)d</span>yhtä tagia"
+msgstr[0] ""
+"käytä vähintään <span class=\"hidden\">%(tag_count)d</span>yhtä tagia"
msgstr[1] "käytä vähintään %(tag_count)d tagia"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "Ainakin yksi seuraavista tageistä on pakollinen: %(tags)s"
-#: forms.py:227
+#: forms.py:249
#, 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] "jokaisen tagin tulee olla vähintään <span class=\"hidden\">%(max_chars)d</span>yhden merkin pituinen"
+msgstr[0] ""
+"jokaisen tagin tulee olla vähintään <span class=\"hidden\">%(max_chars)d</"
+"span>yhden merkin pituinen"
msgstr[1] "jokaisen tagin tulee olla vähintään %(max_chars)d merkin pituinen"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "käytä-näitä-merkkejä-tageissa"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr "Yhteisöwiki (mainepisteitä ei annta & muut voivat muokata viestiä)"
-#: forms.py:271
+#: forms.py:295
msgid ""
-"if you choose community wiki option, the question and answer do not generate"
-" points and name of author will not be shown"
-msgstr "jos valitset yhteisön muokattavissa olevan asetuksen, kysymykset ja vastaukset eivät anna pisteitä kirjoittajalle eikä kirjoittajan nimeä näy"
+"if you choose community wiki option, the question and answer do not generate "
+"points and name of author will not be shown"
+msgstr ""
+"jos valitset yhteisön muokattavissa olevan asetuksen, kysymykset ja "
+"vastaukset eivät anna pisteitä kirjoittajalle eikä kirjoittajan nimeä näy"
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "yhteenveto päivityksistä:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
-msgstr "kirjoita lyhyt yhteenveto mitä teit (esim. kirjotusvirheiden korjaus, paranneltiin tekstisijoittelua, jne. Ei pakollinen.)"
+msgstr ""
+"kirjoita lyhyt yhteenveto mitä teit (esim. kirjotusvirheiden korjaus, "
+"paranneltiin tekstisijoittelua, jne. Ei pakollinen.)"
-#: forms.py:362
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Lisää tai vähennä pisteitä"
-#: forms.py:376 const/__init__.py:247
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "hyväksytty"
-#: forms.py:377 const/__init__.py:248
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "katsottu"
-#: forms.py:378 const/__init__.py:249
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "jäähyllä"
-#: forms.py:379 const/__init__.py:250
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "lukittu"
-#: forms.py:381
+#: forms.py:405
msgid "administrator"
msgstr "ylläpitäjä"
-#: forms.py:382 const/__init__.py:246
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "moderaattori"
-#: forms.py:402
+#: forms.py:426
msgid "Change status to"
msgstr "Vaihda statuksesi"
-#: forms.py:429
+#: forms.py:453
msgid "which one?"
msgstr "mikä?"
-#: forms.py:450
+#: forms.py:474
msgid "Cannot change own status"
msgstr "Et voi vaihtaa omaa statustasi"
-#: forms.py:456
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "Et voi tehdä toisesta käyttäjästä moderaattoria"
-#: forms.py:463
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "Et voi vaihtaa toisen moderaattorin statusta"
-#: forms.py:469
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "Et voi vaihtaa statusta ylläpitäjäksi"
-#: forms.py:475
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
-msgstr "Jos haluat muuttaa %(username)s:n statusta, tee merkityksellinen valinta"
+msgstr ""
+"Jos haluat muuttaa %(username)s:n statusta, tee merkityksellinen valinta"
-#: forms.py:484
+#: forms.py:508
msgid "Subject line"
msgstr "Aihe"
-#: forms.py:491
+#: forms.py:515
msgid "Message text"
msgstr "Viestin teksti"
-#: forms.py:506
+#: forms.py:530
msgid "Your name (optional):"
msgstr "Nimesi (vapaaehtoinen):"
-#: forms.py:507
+#: forms.py:531
msgid "Email:"
msgstr "Sähköposti:"
-#: forms.py:509
+#: forms.py:533
msgid "Your message:"
msgstr "Viestisi:"
-#: forms.py:514
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "En halua antaa sähköpostiosoitettanu enkä saada vastausta:"
-#: forms.py:536
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr "Klikkaa raksi ruutuun \"En halua luovuttaa sähköpostiani\"."
-#: forms.py:575
+#: forms.py:599
msgid "ask anonymously"
msgstr "kysy anonyymisti"
-#: forms.py:577
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
-msgstr "Klikkaa raksi ruutuun, jos haluat jättää nimesi julkaisematta kysyessäsi tätä"
+msgstr ""
+"Klikkaa raksi ruutuun, jos haluat jättää nimesi julkaisematta kysyessäsi tätä"
-#: forms.py:737
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
-msgstr "Olet kysynyt kysymyksen anonyymisti - jos päätät paljastaa henkilöllisyytesi, klikkaa tätä ruutua."
+msgstr ""
+"Olet kysynyt kysymyksen anonyymisti - jos päätät paljastaa "
+"henkilöllisyytesi, klikkaa tätä ruutua."
-#: forms.py:741
+#: forms.py:773
msgid "reveal identity"
msgstr "paljasta henkilöllisyys"
-#: forms.py:799
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
-msgstr "Vain tämän nimettömän kysymyksen kysyjä voi paljastaa henkilöllisyytensä - ole hyvä ja klikkaa ruutua uudelleen"
+msgstr ""
+"Vain tämän nimettömän kysymyksen kysyjä voi paljastaa henkilöllisyytensä - "
+"ole hyvä ja klikkaa ruutua uudelleen"
-#: forms.py:812
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
-msgstr "Säännöt näyttävät juuri muuttuneen - et voi enää kysyä anonyymisti. Ole hyvä ja klikkaa \"paljasta henkilöllisyys\" -ruutua tai päivitä sivu ja yritä muokata kysymystä uudelleen."
+msgstr ""
+"Säännöt näyttävät juuri muuttuneen - et voi enää kysyä anonyymisti. Ole "
+"hyvä ja klikkaa \"paljasta henkilöllisyys\" -ruutua tai päivitä sivu ja "
+"yritä muokata kysymystä uudelleen."
-#: forms.py:856
+#: forms.py:888
msgid "Real name"
msgstr "Nimi"
-#: forms.py:863
+#: forms.py:895
msgid "Website"
msgstr "Nettisivu"
-#: forms.py:870
+#: forms.py:902
msgid "City"
msgstr "Kaupunki"
-#: forms.py:879
+#: forms.py:911
msgid "Show country"
msgstr "Näytä maa"
-#: forms.py:884
+#: forms.py:916
msgid "Date of birth"
msgstr "Syntymäpäivä"
-#: forms.py:885
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "ei näytetä, käytetään iän laskemiseen, muoto: VVVV-KK-PP"
-#: forms.py:891
+#: forms.py:923
msgid "Profile"
msgstr "Profiili"
-#: forms.py:900
+#: forms.py:932
msgid "Screen name"
msgstr "Käyttäjätunnus"
-#: forms.py:931 forms.py:932
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
-msgstr "sähköpostiosoite on jo tietokannassa - ole hyvä ja käytä toista sähköpostiosoitetta"
+msgstr ""
+"sähköpostiosoite on jo tietokannassa - ole hyvä ja käytä toista "
+"sähköpostiosoitetta"
-#: forms.py:939
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Valitse sähköpostin tagisuodatin"
-#: forms.py:986
+#: forms.py:1018
msgid "Asked by me"
msgstr "Kysyjänä minä"
-#: forms.py:989
+#: forms.py:1021
msgid "Answered by me"
msgstr "Vastaajana minä"
-#: forms.py:992
+#: forms.py:1024
msgid "Individually selected"
msgstr "Yksittäin valittu"
-#: forms.py:995
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Koko keskustelupalsta (tagi-suodatettu)"
-#: forms.py:999
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Kommentit ja merkinnät, joissa minut mainitaan"
-#: forms.py:1077
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "valitse yksi yllä olevista"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "OK, kokeillaan!"
-#: forms.py:1078
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "ei sähköpostipäivityksiä, kiitos"
-#: forms.py:1082
-msgid "please choose one of the options above"
-msgstr "valitse yksi yllä olevista"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
#: urls.py:41
msgid "about/"
@@ -344,7 +399,7 @@ msgstr "apua/"
msgid "answers/"
msgstr "vastaukset/"
-#: urls.py:46 urls.py:87 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "muokkaa/"
@@ -357,7 +412,7 @@ msgid "questions"
msgstr "kysymykset"
#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
-#: urls.py:112 urls.py:117 urls.py:123 urls.py:294
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "kysymykset/"
@@ -389,51 +444,51 @@ msgstr "aanesta/"
msgid "widgets/"
msgstr "widgetit/"
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "tagit/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "kirjoittaudu-tagien-tilaajaksi/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "kayttajat/"
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr "Tilaukset"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr "käyttäjät/päivityksellä_oma_avatar/"
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "mitalit/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "viestit/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "merkkaa-luetuksi/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "laheta/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "palaute/"
-#: urls.py:300
+#: urls.py:305
msgid "question/"
msgstr "kysymys/"
-#: urls.py:307 setup_templates/settings.py:210
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "tili/"
@@ -452,7 +507,8 @@ msgstr "Mitaliasetukset"
#: conf/badges.py:23
msgid "Disciplined: minimum upvotes for deleted post"
-msgstr "Kurinalainen: vähimmäismäärä positiivisia ääniä poistetulle merkinnälle"
+msgstr ""
+"Kurinalainen: vähimmäismäärä positiivisia ääniä poistetulle merkinnälle"
#: conf/badges.py:32
msgid "Peer Pressure: minimum downvotes for deleted post"
@@ -558,153 +614,208 @@ msgstr "Sähköpostin aihe-kentän etuliite"
msgid ""
"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A "
"value entered here will overridethe default."
-msgstr "Vakioasetus django-asetuksen EMAIL_SUBJECT_PREFIX mukaan. Tähän kenttään kirjoitettu arvo korvaa vakioasetuksen."
+msgstr ""
+"Vakioasetus django-asetuksen EMAIL_SUBJECT_PREFIX mukaan. Tähän kenttään "
+"kirjoitettu arvo korvaa vakioasetuksen."
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Sähköposti ja sähköpostihuomautusten asetukset"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Uutismerkintöjen enimmäismäärä sähköpostihuomautuksessa"
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr "Päivitysten vakiotiheys kaikille kysymyksille"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
-msgstr "Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä kaikille kysymyksille"
+msgstr ""
+"Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä "
+"kaikille kysymyksille"
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr "Päivitysten vakiotiheys käyttäjän kysymille kysymyksille"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
-msgstr "Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä käyttäjän kysymille kysymyksille"
+msgstr ""
+"Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä "
+"käyttäjän kysymille kysymyksille"
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr "Päivitysten vakiotiheys kysymyksille, joihin käyttäjä on vastannut"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
-msgstr "Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä kysymyksille, joihin käyttäjä on vastannut"
+msgstr ""
+"Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä "
+"kysymyksille, joihin käyttäjä on vastannut"
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
-"Default notification frequency questions individually"
-" selected by the user"
+"Default notification frequency questions individually "
+"selected by the user"
msgstr "Päivitysten vakiotiheys käyttäjän yksittäin valitsemille kysymyksille"
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
-msgstr "Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä käyttäjän yksittäin valitsemille kysymyksille"
+msgstr ""
+"Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä "
+"käyttäjän yksittäin valitsemille kysymyksille"
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr "Päivitysten vakiotiheys maininnoille ja kommenteille"
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
-msgstr "Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä maininnoille ja kommenteille"
+msgstr ""
+"Valitsemalla tämän voit määrittää sähköpostitettujen päivitysten tiheyttä "
+"maininnoille ja kommenteille"
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr "Muistuta ajoittain vastaamattomista kysymyksistä"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
-msgstr "HUOM: käyttääksesi tätä toimintoa, sinun on suoritettava komento \"send_unanswered_question_reminders\" (esimerkiksi cron jobin kautta sopivalla tiheydellä)"
+msgstr ""
+"HUOM: käyttääksesi tätä toimintoa, sinun on suoritettava komento "
+"\"send_unanswered_question_reminders\" (esimerkiksi cron jobin kautta "
+"sopivalla tiheydellä)"
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
-msgstr "Päiviä ennen kuin aloitetaan vastaamattomista kysymyksistä muistuttaminen"
+msgstr ""
+"Päiviä ennen kuin aloitetaan vastaamattomista kysymyksistä muistuttaminen"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
-msgstr "Kuinka usein vastaamattomista kysymyksistä muistutetaan (päiviä muistutusten välissä)"
+msgstr ""
+"Kuinka usein vastaamattomista kysymyksistä muistutetaan (päiviä muistutusten "
+"välissä)"
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr "Vastaamattomia kysymyksiä koskevien muistutusten enimmäismäärä"
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr "Muistuta jaksoittain parhaan vastauksen hyväksymisestä"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
-"command \"send_accept_answer_reminders\" (for example, via a cron job - with"
-" an appropriate frequency) "
-msgstr "HUOM: käyttääksesi tätä toimintoa, sinun on suoritettava komento \"send_accept_answer_reminders\" (esimerkiksi cron jobin kautta sopivalla tiheydellä)"
+"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
+"an appropriate frequency) "
+msgstr ""
+"HUOM: käyttääksesi tätä toimintoa, sinun on suoritettava komento "
+"\"send_accept_answer_reminders\" (esimerkiksi cron jobin kautta sopivalla "
+"tiheydellä)"
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
-msgstr "Päiviä ennen kuin vastauksen hyväksymisestä aletaan lähettää muistutuksia"
+msgstr ""
+"Päiviä ennen kuin vastauksen hyväksymisestä aletaan lähettää muistutuksia"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
-msgstr "Kuinka usein muistutuksia vastauksen hyväksymisestä lähetetään (päiviä muistutusten välillä)"
+msgstr ""
+"Kuinka usein muistutuksia vastauksen hyväksymisestä lähetetään (päiviä "
+"muistutusten välillä)"
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr "Muistutusten enimmäismäärä"
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr "Vaadi sähköpostiosoitteen tarkistus ennen hyväksyntää"
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
-msgstr "Aktiivinen sähköpostitili vahvistetaan lähettämällä vahvistuskoodi sähköpostitse "
+msgstr ""
+"Aktiivinen sähköpostitili vahvistetaan lähettämällä vahvistuskoodi "
+"sähköpostitse "
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr "Salli vain yksi tili per sähköpostiosoite"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr "Sähköpostiosoite anonyymille käyttäjälle"
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
-msgstr "Käytä tätä asetusta kontrolloidaksesi sähköpostittoman käyttäjän gravataria"
+msgstr ""
+"Käytä tätä asetusta kontrolloidaksesi sähköpostittoman käyttäjän gravataria"
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr "Salli kysymysten kysyminen sähköpostitse"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
-"Before enabling this setting - please fill out IMAP settings in the "
-"settings.py file"
-msgstr "Täytä IMAP-asetukset settings.py -tiedostossa ennen tämän asetuksen sallimista"
+"Before enabling this setting - please fill out IMAP settings in the settings."
+"py file"
+msgstr ""
+"Täytä IMAP-asetukset settings.py -tiedostossa ennen tämän asetuksen "
+"sallimista"
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr "Korvaa väli väliviivalla sähköpostitse lähetetyissä tageissä"
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
-msgstr "Tämä asetus koskee sähköpostitse kysyttyjen kysymysten aihe-kenttään kirjoitettuja tagejä."
+msgstr ""
+"Tämä asetus koskee sähköpostitse kysyttyjen kysymysten aihe-kenttään "
+"kirjoitettuja tagejä."
+
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "Salli kysymysten kysyminen sähköpostitse"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
#: conf/external_keys.py:11
msgid "Keys for external services"
@@ -717,9 +828,11 @@ msgstr "Google-sivun vahvistuskoodi"
#: conf/external_keys.py:21
#, python-format
msgid ""
-"This key helps google index your site please obtain is at <a "
+"This key helps google index your site please obtain is at <a href=\"%(url)s?"
+"hl=%(lang)s\">google webmasters tools site</a>"
+msgstr ""
+"Tämä koodi auttaa Googlea luetteloimaan sivusi - voit hakea sen täältä: <a "
"href=\"%(url)s?hl=%(lang)s\">google webmasters tools site</a>"
-msgstr "Tämä koodi auttaa Googlea luetteloimaan sivusi - voit hakea sen täältä: <a href=\"%(url)s?hl=%(lang)s\">google webmasters tools site</a>"
#: conf/external_keys.py:36
msgid "Google Analytics key"
@@ -730,105 +843,101 @@ msgstr "Google Analytics -palvelun avain"
msgid ""
"Obtain is at <a href=\"%(url)s\">Google Analytics</a> site, if you wish to "
"use Google Analytics to monitor your site"
-msgstr "Jos haluat käyttää Google Analyticsiä sivusi tarkkailemiseen, hae koodi täältä: <a href=\"%(url)s\">Google Analytics</a>"
+msgstr ""
+"Jos haluat käyttää Google Analyticsiä sivusi tarkkailemiseen, hae koodi "
+"täältä: <a href=\"%(url)s\">Google Analytics</a>"
#: conf/external_keys.py:51
msgid "Enable recaptcha (keys below are required)"
msgstr "Salli recaptcha (vaatii alla näkyvät avaimet)"
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr "Recaptcha-palvelun julkinen avain (public key)"
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr "Recaptcha-palvelun yksityinen avain (private key)"
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
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=\"%(url)s\">%(url)s</a>"
-msgstr "Recaptcha on työkalu todellisten ihmisten erottelemiseksi ärsyttävistä spam-roboteista. Hae työkalu ja yleinen koodi täältä: <a href=\"%(url)s\">%(url)s</a>"
+"robots. Please get this and a public key at the <a href=\"%(url)s\">%(url)s</"
+"a>"
+msgstr ""
+"Recaptcha on työkalu todellisten ihmisten erottelemiseksi ärsyttävistä spam-"
+"roboteista. Hae työkalu ja yleinen koodi täältä: <a href=\"%(url)s\">"
+"%(url)s</a>"
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr "Facebookin julkinen avain (API key)"
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
-"method at your site. Please obtain these keys at <a "
-"href=\"%(url)s\">facebook create app</a> site"
-msgstr "Facebookin API-koodi ja Facebook secret sallivat Facebook Connectin sisäänkirjautumistavan sivullasi. Hae koodit täältä: <a href=\"%(url)s\">facebook create app</a>"
+"method at your site. Please obtain these keys at <a href=\"%(url)s"
+"\">facebook create app</a> site"
+msgstr ""
+"Facebookin API-koodi ja Facebook secret sallivat Facebook Connectin "
+"sisäänkirjautumistavan sivullasi. Hae koodit täältä: <a href=\"%(url)s"
+"\">facebook create app</a>"
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Facebookin salainen avain (secret key)"
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr "Twitterin käyttäjän koodi"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
-"Please register your forum at <a href=\"%(url)s\">twitter applications "
-"site</a>"
-msgstr "Rekisteröi foorumisi täällä: <a href=\"%(url)s\">twitter applications site</a>"
+"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
+"a>"
+msgstr ""
+"Rekisteröi foorumisi täällä: <a href=\"%(url)s\">twitter applications site</"
+"a>"
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr "Twitterin Consumer secret -avain"
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr "LinkedInin käyttäjän koodi"
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
-"Please register your forum at <a href=\"%(url)s\">LinkedIn developer "
-"site</a>"
-msgstr "Rekisteröi foorumisi täällä: <a href=\"%(url)s\">LinkedIn developer site</a"
+"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
+msgstr ""
+"Rekisteröi foorumisi täällä: <a href=\"%(url)s\">LinkedIn developer site</a"
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr "LinkedInin käyttäjän salaisuus"
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr "ident.ca:n käyttäjän koodi"
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
-msgstr "Rekisteröi foorumisi täällä: <a href=\"%(url)s\">Identi.ca applications site</a>"
+msgstr ""
+"Rekisteröi foorumisi täällä: <a href=\"%(url)s\">Identi.ca applications "
+"site</a>"
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr "ident.ca:n käyttäjän salaisuus"
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr "Käytä LDAP-todennusta sisäänkirjautumiseen"
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr "LDAP-palveluntarjoajan nimi"
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr "LDAP-palvelun URL"
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr "Selitä, miten LDAP-salasana vaihdetaan"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "Kiinteät sivut - tiedot, yksityisyydensuoja, jne."
@@ -841,7 +950,8 @@ msgstr "Teksti sivuston tietoa-sivua varten (HTML-muodossa)"
msgid ""
"Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on "
"the \"about\" page to check your input."
-msgstr "Tallenna ja <a href=\"http://validator.w3.org/\">validoi</a> tietoa-sivu"
+msgstr ""
+"Tallenna ja <a href=\"http://validator.w3.org/\">validoi</a> tietoa-sivu"
#: conf/flatpages.py:32
msgid "Text of the Q&A forum FAQ page (html format)"
@@ -851,7 +961,9 @@ msgstr "Kysymys- ja vastausfoorumin UKK-sivun teksti (html-muodossa)"
msgid ""
"Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on "
"the \"faq\" page to check your input."
-msgstr "Tallenna ja <a href=\"http://validator.w3.org/\">käytä HTML validator -työkalua</a> ukk-sivulla tarkistaaksesi tekstisi."
+msgstr ""
+"Tallenna ja <a href=\"http://validator.w3.org/\">käytä HTML validator -"
+"työkalua</a> ukk-sivulla tarkistaaksesi tekstisi."
#: conf/flatpages.py:46
msgid "Text of the Q&A forum Privacy Policy (html format)"
@@ -861,18 +973,24 @@ msgstr "Teksti yksityisyyttä koskevaa sivua varten (HTML-muodossa)"
msgid ""
"Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on "
"the \"privacy\" page to check your input."
-msgstr "Tallenna ja <a href=\"http://validator.w3.org/\">käytä HTML validator -työkalua</a> yksityisyydensuoja-sivulla tarkistaaksesi tekstisi."
+msgstr ""
+"Tallenna ja <a href=\"http://validator.w3.org/\">käytä HTML validator -"
+"työkalua</a> yksityisyydensuoja-sivulla tarkistaaksesi tekstisi."
#: conf/forum_data_rules.py:12
msgid "Data entry and display rules"
msgstr "Tiedon lisäämisen ja näytön säännot"
-#: conf/forum_data_rules.py:22
-#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read "
-"this</a> first.</em>"
-msgstr "Mahdollista videoiden liittäminen. <em>Huom: <a href=\"%(url)s>lue tämä</a> ensin.</em>"
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
+#, fuzzy, python-format
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
+msgstr ""
+"Mahdollista videoiden liittäminen. <em>Huom: <a href=\"%(url)s>lue tämä</a> "
+"ensin.</em>"
#: conf/forum_data_rules.py:33
msgid "Check to enable community wiki feature"
@@ -884,9 +1002,11 @@ msgstr "Salli kysyminen anonyymisti"
#: conf/forum_data_rules.py:44
msgid ""
-"Users do not accrue reputation for anonymous questions and their identity is"
-" not revealed until they change their mind"
-msgstr "Anonyymien kysymysten kysyjille ei kerry mainetta käyttäjinä, ja heidän henkilöllisyyttänsä ei paljasteta ennen kuin he muuttavat mieltään."
+"Users do not accrue reputation for anonymous questions and their identity is "
+"not revealed until they change their mind"
+msgstr ""
+"Anonyymien kysymysten kysyjille ei kerry mainetta käyttäjinä, ja heidän "
+"henkilöllisyyttänsä ei paljasteta ennen kuin he muuttavat mieltään."
#: conf/forum_data_rules.py:56
msgid "Allow posting before logging in"
@@ -898,7 +1018,12 @@ msgid ""
"logging in. Enabling this may require adjustments in the user login system "
"to check for pending posts every time the user logs in. The builtin Askbot "
"login system supports this feature."
-msgstr "Klikkaa raksi ruutuun, jos haluat sallia käyttäjien kysymysten ja vastausten lisäämisen ennen sisäänkirjautumista. Tämän salliminen saattaa vaatia sisäänkirjautumisjärjestelmän hienosäätöä niin, että se tarkistaa, onko merkintöjä jonossa, aina käyttäjän kirjautuessa sisään. Sisäänrakennettu Askbot-sisäänkirjautumisjärjestelmä tukee tätä toimintoa."
+msgstr ""
+"Klikkaa raksi ruutuun, jos haluat sallia käyttäjien kysymysten ja vastausten "
+"lisäämisen ennen sisäänkirjautumista. Tämän salliminen saattaa vaatia "
+"sisäänkirjautumisjärjestelmän hienosäätöä niin, että se tarkistaa, onko "
+"merkintöjä jonossa, aina käyttäjän kirjautuessa sisään. Sisäänrakennettu "
+"Askbot-sisäänkirjautumisjärjestelmä tukee tätä toimintoa."
#: conf/forum_data_rules.py:73
msgid "Allow swapping answer with question"
@@ -908,7 +1033,10 @@ msgstr "Salli vastauksen ja kysymyksen paikan vaihtaminen keskenään"
msgid ""
"This setting will help import data from other forums such as zendesk, when "
"automatic data import fails to detect the original question correctly."
-msgstr "Tämä asetus helpottaa tietojen siirtämistä muilta palstoilta, kuten zendeskistä, jos automaattinen tiedonsiirtojärjestelmä ei huomaa alkuperäistä kysymystä oikein."
+msgstr ""
+"Tämä asetus helpottaa tietojen siirtämistä muilta palstoilta, kuten "
+"zendeskistä, jos automaattinen tiedonsiirtojärjestelmä ei huomaa "
+"alkuperäistä kysymystä oikein."
#: conf/forum_data_rules.py:87
msgid "Maximum length of tag (number of characters)"
@@ -927,106 +1055,157 @@ msgid "Minimum length of answer body (number of characters)"
msgstr "Vastauksen leipätekstin vähimmäispituus (merkkien määrä)"
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "tagit ovat pakollisia"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr "Pakolliset tagit"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
-msgstr "Ainakin yksi näistä tageista tarvitaan kaikille uusille tai uudelleen muokatuille kysymyksille. Pakollinen tagi voi olla jokerimerkki, jos jokerimerkit ovat sallittuja tageissa."
+msgstr ""
+"Ainakin yksi näistä tageista tarvitaan kaikille uusille tai uudelleen "
+"muokatuille kysymyksille. Pakollinen tagi voi olla jokerimerkki, jos "
+"jokerimerkit ovat sallittuja tageissa."
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr "Kaikki tagit pienillä alkukirjaimilla"
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
-msgstr "Huomio: tämän tarkistamisen jälkeen varmista tietokanta ja suorita seuraava komento: <code>python manage.py fix_question_tags</code> nimetäksesi kaikki tagit uudelleen"
+msgstr ""
+"Huomio: tämän tarkistamisen jälkeen varmista tietokanta ja suorita seuraava "
+"komento: <code>python manage.py fix_question_tags</code> nimetäksesi kaikki "
+"tagit uudelleen"
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr "Tagilistan muoto"
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
-"Select the format to show tags in, either as a simple list, or as a tag "
-"cloud"
-msgstr "Valitse, missä muodossa tagit näytetään - joko yksinkertaisena listana tai tagipilvenä"
+"Select the format to show tags in, either as a simple list, or as a tag cloud"
+msgstr ""
+"Valitse, missä muodossa tagit näytetään - joko yksinkertaisena listana tai "
+"tagipilvenä"
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "Käytä jokerimerkki -tagejä."
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
-msgstr "Jokerimerkki -tagien avulla voi seurata tai jättää huomiotta monta tagiä kerralla. Jokerimerkki tulee laittaa tagin loppuun."
+msgstr ""
+"Jokerimerkki -tagien avulla voi seurata tai jättää huomiotta monta tagiä "
+"kerralla. Jokerimerkki tulee laittaa tagin loppuun."
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr "Merkintöjen alla näytettävien kommenttien maksimimäärä (vakio)"
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr "Kommentin enimmäispituus, täytyy olla < %(max_len)s"
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr "Rajoita kommenttien muokkaamiseen käytettävää aikaa"
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr "Jos ruutu on tyhjä, kommenttien muokkaamiselle ei ole aikarajaa"
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr "Kommenttien muokkaamiseen käytettävissä (minuuttia)"
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr "Salli asetus klikkaamalla edellistä ruutua"
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr "Tallenna kommentti painamalla <Enter>iä."
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr "Hakusanan vähimmäispituus Ajax-haulle"
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr "Täytyy vastata tietokannan asetusta"
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr "Älä tee tekstikyselystä tahmeaa hakiessa"
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
-msgstr "Klikkaa ruutua estääksesi haun \"tahmean\" käyttäytymisen. Tästä saattaa olla hyötyä, jos haluat siirtää hakukentän pois vakioasemasta tai et pidä tekstihaun tavallisesta tahemasta käyttäytymisestä."
+msgstr ""
+"Klikkaa ruutua estääksesi haun \"tahmean\" käyttäytymisen. Tästä saattaa "
+"olla hyötyä, jos haluat siirtää hakukentän pois vakioasemasta tai et pidä "
+"tekstihaun tavallisesta tahemasta käyttäytymisestä."
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "Maksimi määrä tageja per kysymys"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr "Kysymyksien määrä sivulla vakiona"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "Mitä \"vastaamattomien kysymysten\" tulisi tarkoittaa?"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr "Käytä LDAP-todennusta sisäänkirjautumiseen"
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+#, fuzzy
+msgid "LDAP Server USERID field name"
+msgstr "LDAP-palveluntarjoajan nimi"
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+#, fuzzy
+msgid "LDAP Server EMAIL field name"
+msgstr "LDAP-palveluntarjoajan nimi"
+
#: conf/leading_sidebar.py:12
msgid "Common left sidebar"
msgstr "Yleinen vasen sivupalkki"
@@ -1044,10 +1223,15 @@ msgid ""
"Use this area to enter content at the LEFT sidebarin HTML format. When "
"using this option, please use the HTML validation service to make sure that "
"your input is valid and works well in all browsers."
-msgstr "Käytä tätä kenttää lisätäksesi sisältöä VASEMPAAN sivupalkkiin HTML-muodossa. Jos käytät tätä toimintoa, käytä HTML-tarkistuspalvelua varmistaaksesi, että koodisi on oikein kirjoitettua ja toimii kaikissa selaimissa."
+msgstr ""
+"Käytä tätä kenttää lisätäksesi sisältöä VASEMPAAN sivupalkkiin HTML-"
+"muodossa. Jos käytät tätä toimintoa, käytä HTML-tarkistuspalvelua "
+"varmistaaksesi, että koodisi on oikein kirjoitettua ja toimii kaikissa "
+"selaimissa."
#: conf/license.py:13
-msgid "Content LicensContent License"
+#, fuzzy
+msgid "Content License"
msgstr "Content LicensContent License"
#: conf/license.py:21
@@ -1091,16 +1275,19 @@ msgid "Login provider setings"
msgstr "Sisäänkirjautumispalvelun tarjoajan asetukset"
#: conf/login_providers.py:22
-msgid "Show alternative login provider buttons on the password \"Sign Up\" page"
+msgid ""
+"Show alternative login provider buttons on the password \"Sign Up\" page"
msgstr "Käyttäjätunnus tai sähköposti"
#: conf/login_providers.py:31
msgid "Always display local login form and hide \"Askbot\" button."
-msgstr "Näytä aina paikallinen sisäänkirjautumislomake ja piilota \"Askbot\"-painike."
+msgstr ""
+"Näytä aina paikallinen sisäänkirjautumislomake ja piilota \"Askbot\"-painike."
#: conf/login_providers.py:40
msgid "Activate to allow login with self-hosted wordpress site"
-msgstr "Aktivoi salliaksesi sisäänkirjautuminen itsenäisillä wordpress -sivuilla"
+msgstr ""
+"Aktivoi salliaksesi sisäänkirjautuminen itsenäisillä wordpress -sivuilla"
#: conf/login_providers.py:41
msgid ""
@@ -1110,15 +1297,18 @@ msgstr "aktivoidaksesi tämän, täytä wordpress xml-rpc -asetus alla"
#: conf/login_providers.py:50
msgid ""
-"Fill it with the wordpress url to the xml-rpc, normally "
-"http://mysite.com/xmlrpc.php"
-msgstr "Täytä wordpressin xml-rpc -URL:llä, normaalisti http://mysite.com/xmlrpc.php"
+"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/"
+"xmlrpc.php"
+msgstr ""
+"Täytä wordpressin xml-rpc -URL:llä, normaalisti http://mysite.com/xmlrpc.php"
#: conf/login_providers.py:51
msgid ""
"To enable, go to Settings->Writing->Remote Publishing and check the box for "
"XML-RPC"
-msgstr "Salliaksesi tämän, mene Asetuksiin (Settings) -> Kirjoittaminen (Writing) -> Etäjulkaiseminen (Remote Publishing) ja klikkaa XML-PRC -ruutua"
+msgstr ""
+"Salliaksesi tämän, mene Asetuksiin (Settings) -> Kirjoittaminen (Writing) -> "
+"Etäjulkaiseminen (Remote Publishing) ja klikkaa XML-PRC -ruutua"
#: conf/login_providers.py:60
msgid "Upload your icon"
@@ -1134,7 +1324,9 @@ msgstr "Aktivoi %(provider)s:n sisäänkirjautuminen"
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
"need to be set in the \"External keys\" section"
-msgstr "Huomio: salliaksesi todella %(provider)s-sisäänkirjautumisen, sinun on muokattava erinäisiä lisäasetuksia \"Ulkopuoliset avaimet\"-osiossa"
+msgstr ""
+"Huomio: salliaksesi todella %(provider)s-sisäänkirjautumisen, sinun on "
+"muokattava erinäisiä lisäasetuksia \"Ulkopuoliset avaimet\"-osiossa"
#: conf/markup.py:15
msgid "Markup in posts"
@@ -1146,11 +1338,15 @@ msgstr "Salli koodiystävällinen Markdown"
#: conf/markup.py:43
msgid ""
-"If checked, underscore characters will not trigger italic or bold formatting"
-" - bold and italic text can still be marked up with asterisks. Note that "
+"If checked, underscore characters will not trigger italic or bold formatting "
+"- bold and italic text can still be marked up with asterisks. Note that "
"\"MathJax support\" implicitly turns this feature on, because underscores "
"are heavily used in LaTeX input."
-msgstr "Jos klikkaat tätä ruutua, alleviivatut merkit eivät näy kursivoituna eivätkä lihavoituina - lihavoitu ja kursivoitu teksti voidaan merkitä tähdin. Huomaa, että \"MathJax-tuki\" sallii tämän toiminnon itsestään, sillä LaTeX käyttää runsaasti alleviivausta."
+msgstr ""
+"Jos klikkaat tätä ruutua, alleviivatut merkit eivät näy kursivoituna eivätkä "
+"lihavoituina - lihavoitu ja kursivoitu teksti voidaan merkitä tähdin. "
+"Huomaa, että \"MathJax-tuki\" sallii tämän toiminnon itsestään, sillä LaTeX "
+"käyttää runsaasti alleviivausta."
#: conf/markup.py:58
msgid "Mathjax support (rendering of LaTeX)"
@@ -1161,7 +1357,9 @@ msgstr "Mathjax-tuki (LaTeXin käyttö)"
msgid ""
"If you enable this feature, <a href=\"%(url)s\">mathjax</a> must be "
"installed on your server in its own directory."
-msgstr "Jos sallit tämän, <a href=\"%(url)s\">mathjax</a>:n on oltava asennettuna palvelimellesi omassa hakemistossaan."
+msgstr ""
+"Jos sallit tämän, <a href=\"%(url)s\">mathjax</a>:n on oltava asennettuna "
+"palvelimellesi omassa hakemistossaan."
#: conf/markup.py:74
msgid "Base url of MathJax deployment"
@@ -1172,7 +1370,10 @@ msgid ""
"Note - <strong>MathJax is not included with askbot</strong> - you should "
"deploy it yourself, preferably at a separate domain and enter url pointing "
"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)"
-msgstr "Huom. - <strong>MathJax ei sisälly askbot</strong>:iin - ota se käyttöön itse, mieluiten erillisenä alanaan ja kirjoita \"mathjax\"-hakemistoon (esim. http://mysite.com/mathjax) osoittava URL."
+msgstr ""
+"Huom. - <strong>MathJax ei sisälly askbot</strong>:iin - ota se käyttöön "
+"itse, mieluiten erillisenä alanaan ja kirjoita \"mathjax\"-hakemistoon "
+"(esim. http://mysite.com/mathjax) osoittava URL."
#: conf/markup.py:91
msgid "Enable autolinking with specific patterns"
@@ -1180,9 +1381,11 @@ msgstr "Salli automaattinen linkittäminen tietyillä säännönmukaisuuksilla"
#: conf/markup.py:93
msgid ""
-"If you enable this feature, the application will be able to detect patterns"
-" and auto link to URLs"
-msgstr "Jos sallit tämän toiminnon, sovellus etsii säännönmukaisuuksia ja automaattisesti linkittää URL:t."
+"If you enable this feature, the application will be able to detect patterns "
+"and auto link to URLs"
+msgstr ""
+"Jos sallit tämän toiminnon, sovellus etsii säännönmukaisuuksia ja "
+"automaattisesti linkittää URL:t."
#: conf/markup.py:106
msgid "Regexes to detect the link patterns"
@@ -1195,7 +1398,11 @@ msgid ""
"The numbers captured by the pattern in the parentheses will be transferred "
"to the link url template. Please look up more information about regular "
"expressions elsewhere."
-msgstr "Kirjoita toimivia regexejä säännönmukaisuuksille, yksi kullekin riville. Esimerkiksi löytääksesi bugisäännönmukaisuuden, kuten #bug123, käytä regexiä #bug(\\d+). Säännönmukaisuuden sisältämät numerot suluissa siirretään linkin URL:ään. Voit etsiä lisätietoa regexeistä muualta."
+msgstr ""
+"Kirjoita toimivia regexejä säännönmukaisuuksille, yksi kullekin riville. "
+"Esimerkiksi löytääksesi bugisäännönmukaisuuden, kuten #bug123, käytä regexiä "
+"#bug(\\d+). Säännönmukaisuuden sisältämät numerot suluissa siirretään "
+"linkin URL:ään. Voit etsiä lisätietoa regexeistä muualta."
#: conf/markup.py:127
msgid "URLs for autolinking"
@@ -1205,11 +1412,17 @@ msgstr "Automaattisen linkittämisen URL:t"
msgid ""
"Here, please enter url templates for the patterns entered in the previous "
"setting, also one entry per line. <strong>Make sure that number of lines in "
-"this setting and the previous one are the same</strong> For example template"
-" https://bugzilla.redhat.com/show_bug.cgi?id=\\1 together with the pattern "
+"this setting and the previous one are the same</strong> For example template "
+"https://bugzilla.redhat.com/show_bug.cgi?id=\\1 together with the pattern "
"shown above and the entry in the post #123 will produce link to the bug 123 "
"in the redhat bug tracker."
-msgstr "Kirjoita tähän URL-pohjia edelliseen asetukseen kirjoitetuille säännönmukaisuuksille, yksi kullekin riville. <strong>Varmista, että rivien määrä on sama tässä ja edellisessä asetuksessa.</strong> Esimerkiksi pohja https://bugzilla.redhat.com/show_bug.cgi?id=\\1 yhdessä edellä mainitun säännönmukaisuuden kanssa sekä merkintä numero #123 tuottavat yhdessä linkin bugiin 123 redhatin bug-trackerissä."
+msgstr ""
+"Kirjoita tähän URL-pohjia edelliseen asetukseen kirjoitetuille "
+"säännönmukaisuuksille, yksi kullekin riville. <strong>Varmista, että rivien "
+"määrä on sama tässä ja edellisessä asetuksessa.</strong> Esimerkiksi pohja "
+"https://bugzilla.redhat.com/show_bug.cgi?id=\\1 yhdessä edellä mainitun "
+"säännönmukaisuuden kanssa sekä merkintä numero #123 tuottavat yhdessä linkin "
+"bugiin 123 redhatin bug-trackerissä."
#: conf/minimum_reputation.py:12
msgid "Karma thresholds"
@@ -1291,7 +1504,13 @@ msgstr "Poista rel=nofollow omalta kotisivultasi"
msgid ""
"When a search engine crawler will see a rel=nofollow attribute on a link - "
"the link will not count towards the rank of the users personal site."
-msgstr "Kun hakukone näkee rel=nofollow -viittauksen linkissä, linkkiä ei lasketa mukaan käyttäjän oman sivun sijoitukseen"
+msgstr ""
+"Kun hakukone näkee rel=nofollow -viittauksen linkissä, linkkiä ei lasketa "
+"mukaan käyttäjän oman sivun sijoitukseen"
+
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
@@ -1343,15 +1562,20 @@ msgstr "Tappiota kirjoittajalle, jonka merkintä saa negatiivisen äänen"
#: conf/reputation_changes.py:128
msgid "Loss for owner of post that was flagged 3 times per same revision"
-msgstr "Tappiota kirjoittajalle, jonka merkintä merkitään saman tarkastuksen perusteella 3 kertaa"
+msgstr ""
+"Tappiota kirjoittajalle, jonka merkintä merkitään saman tarkastuksen "
+"perusteella 3 kertaa"
#: conf/reputation_changes.py:138
msgid "Loss for owner of post that was flagged 5 times per same revision"
-msgstr "Tappiota kirjoittajalle, jonka merkintä merkitään saman tarkastuksen perusteella 5 kertaa"
+msgstr ""
+"Tappiota kirjoittajalle, jonka merkintä merkitään saman tarkastuksen "
+"perusteella 5 kertaa"
#: conf/reputation_changes.py:148
msgid "Loss for post owner when upvote is canceled"
-msgstr "Tappiota kirjoittajalle, jonka merkinnän saama positiivinen ääni poistetaan"
+msgstr ""
+"Tappiota kirjoittajalle, jonka merkinnän saama positiivinen ääni poistetaan"
#: conf/sidebar_main.py:12
msgid "Main page sidebar"
@@ -1369,7 +1593,11 @@ msgid ""
"When using this option (as well as the sidebar footer), please use the HTML "
"validation service to make sure that your input is valid and works well in "
"all browsers."
-msgstr "Käytä tätä kirjoittaaksesi sisältöä sivupalkin yläosaan HTML-muodossa. Kun käytät tätä valintaa (samoin kuin sivupalkin alaosa-työkalua), käytä HTML-varmistuspalvelua varmistaaksesi että koodisi on oikein kirjoitettua ja toimii hyvin kaikissa selaimissa."
+msgstr ""
+"Käytä tätä kirjoittaaksesi sisältöä sivupalkin yläosaan HTML-muodossa. Kun "
+"käytät tätä valintaa (samoin kuin sivupalkin alaosa-työkalua), käytä HTML-"
+"varmistuspalvelua varmistaaksesi että koodisi on oikein kirjoitettua ja "
+"toimii hyvin kaikissa selaimissa."
#: conf/sidebar_main.py:36
msgid "Show avatar block in sidebar"
@@ -1391,7 +1619,9 @@ msgstr "Näytä tagi-valikoija sivupalkissa"
msgid ""
"Uncheck this if you want to hide the options for choosing interesting and "
"ignored tags "
-msgstr "Jätä tämä ruutu tyhjäksi, jos haluat piilottaa kiinnostavien ja unohdettujen tagien valitsemisasetuksen"
+msgstr ""
+"Jätä tämä ruutu tyhjäksi, jos haluat piilottaa kiinnostavien ja unohdettujen "
+"tagien valitsemisasetuksen"
#: conf/sidebar_main.py:72
msgid "Show tag list/cloud in sidebar"
@@ -1400,7 +1630,9 @@ msgstr "Näytä tagilista/-pilvi sivupalkissa"
#: conf/sidebar_main.py:74
msgid ""
"Uncheck this if you want to hide the tag cloud or tag list from the sidebar "
-msgstr "Jätä tämä ruutu tyhjäksi, jos haluat piilottaa tagipilven tai -listan sivupalkista"
+msgstr ""
+"Jätä tämä ruutu tyhjäksi, jos haluat piilottaa tagipilven tai -listan "
+"sivupalkista"
#: conf/sidebar_main.py:85 conf/sidebar_profile.py:36
#: conf/sidebar_question.py:75
@@ -1410,11 +1642,15 @@ msgstr "Oma sivupalkin alaosa"
#: conf/sidebar_main.py:88 conf/sidebar_profile.py:39
#: conf/sidebar_question.py:78
msgid ""
-"Use this area to enter content at the BOTTOM of the sidebarin HTML format."
-" When using this option (as well as the sidebar header), please use the "
-"HTML validation service to make sure that your input is valid and works well"
-" in all browsers."
-msgstr "Käytä tätä kirjoittaaksesi sisältöä sivupalkin alaosaan HTML-muodossa. Kun käytät tätä valintaa (samoin kuin sivupalkin yläosa-työkalua), käytä HTML-varmistuspalvelua varmistaaksesi että koodisi on oikein kirjoitettua ja toimii hyvin kaikissa selaimissa."
+"Use this area to enter content at the BOTTOM of the sidebarin HTML format. "
+"When using this option (as well as the sidebar header), please use the HTML "
+"validation service to make sure that your input is valid and works well in "
+"all browsers."
+msgstr ""
+"Käytä tätä kirjoittaaksesi sisältöä sivupalkin alaosaan HTML-muodossa. Kun "
+"käytät tätä valintaa (samoin kuin sivupalkin yläosa-työkalua), käytä HTML-"
+"varmistuspalvelua varmistaaksesi että koodisi on oikein kirjoitettua ja "
+"toimii hyvin kaikissa selaimissa."
#: conf/sidebar_profile.py:12
msgid "User profile sidebar"
@@ -1440,7 +1676,9 @@ msgstr "Näytä metatietoa sivupalkissa"
msgid ""
"Uncheck this if you want to hide the meta information about the question "
"(post date, views, last updated). "
-msgstr "Jätä tämä ruutu tyhjäksi, jos haluat piilottaa kysymyksen metatiedot (päivämäärän, katsomiskerrat, viimeisen päivityksen päivämäärän)."
+msgstr ""
+"Jätä tämä ruutu tyhjäksi, jos haluat piilottaa kysymyksen metatiedot "
+"(päivämäärän, katsomiskerrat, viimeisen päivityksen päivämäärän)."
#: conf/sidebar_question.py:62
msgid "Show related questions in sidebar"
@@ -1448,7 +1686,9 @@ msgstr "Näytä samaan asiaan liittyvät kysymykset sivupalkissa"
#: conf/sidebar_question.py:64
msgid "Uncheck this if you want to hide the list of related questions. "
-msgstr "Jätä tämä ruutu tyhjäksi, jos haluat piilottaa listan samaan asiaan liittyvistä kysymyksistä."
+msgstr ""
+"Jätä tämä ruutu tyhjäksi, jos haluat piilottaa listan samaan asiaan "
+"liittyvistä kysymyksistä."
#: conf/site_modes.py:64
msgid "Bootstrap mode"
@@ -1464,7 +1704,11 @@ msgid ""
"more suitable for the smaller communities, <strong>WARNING:</strong> your "
"current value for Minimum reputation, Bagde Settings and Vote Rules will be "
"changed after you modify this setting."
-msgstr "Bootstrap-moodi vähentää mainetta ja kynnystä ansaita tiettyjä mitaleja pienemmille yhteisöille sopiviin arvoihin. <strong>VAROITUS:</strong> nykyiset arvot vähimmäismaineelle, badge-asetuksille ja äänestyssäännöille muuttuvat muokattuasi tätä asetusta."
+msgstr ""
+"Bootstrap-moodi vähentää mainetta ja kynnystä ansaita tiettyjä mitaleja "
+"pienemmille yhteisöille sopiviin arvoihin. <strong>VAROITUS:</strong> "
+"nykyiset arvot vähimmäismaineelle, badge-asetuksille ja äänestyssäännöille "
+"muuttuvat muokattuasi tätä asetusta."
#: conf/site_settings.py:12
msgid "URLS, keywords & greetings"
@@ -1490,27 +1734,27 @@ msgstr "Sivuston kuvaus hakukonetta varten"
msgid "Short name for your Q&A forum"
msgstr "Lyhyt nimi Q&A-foorumille"
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr "Q&A-foorumisi URL, alkuosan oltava http tai https"
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr "Klikkaa raksi ruutuun salliaksesi tervehdyksen anonyymille käyttäjälle"
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr "Tervehdysviestin sisältö näytetään anonyymille käyttäjälle"
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr "Käytä HTML:ää viestin muotoilemiseen"
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "Palautesivun URL-osoite"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr "Jos jätetään tyhjäksi, käytetään järjestelmän omaa palautelomaketta"
@@ -1633,7 +1877,8 @@ msgstr "Q&A-sivun logo"
#: conf/skin_general_settings.py:25
msgid "To change the logo, select new file, then submit this whole form."
-msgstr "Vaihtaaksesi logoa, valitse uusi tiedosto ja lähetä sitten koko tämä lomake."
+msgstr ""
+"Vaihtaaksesi logoa, valitse uusi tiedosto ja lähetä sitten koko tämä lomake."
#: conf/skin_general_settings.py:37
msgid "Show logo"
@@ -1643,7 +1888,9 @@ msgstr "Näytä logo"
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
-msgstr "Klikkaa ruutua, jos haluat näyttää logon foorumin yläosassa, tai jätä tyhjäksi, jos et halua logon näkyvän vakioasemassa"
+msgstr ""
+"Klikkaa ruutua, jos haluat näyttää logon foorumin yläosassa, tai jätä "
+"tyhjäksi, jos et halua logon näkyvän vakioasemassa"
#: conf/skin_general_settings.py:51
msgid "Site favicon"
@@ -1652,10 +1899,13 @@ msgstr "Sivun favicon"
#: conf/skin_general_settings.py:53
#, python-format
msgid ""
-"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the"
-" browser user interface. Please find more information about favicon at <a "
+"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
+"browser user interface. Please find more information about favicon at <a "
"href=\"%(favicon_info_url)s\">this page</a>."
-msgstr "Pieni 16x16 tai 32x32 pikselin ikoni, joka erottaa sivusi selaimen käyttöliittymässä. Voit etsiä lisää tietoa faviconeista <a href=\"%(favicon_info_url)s\">täältä</a>."
+msgstr ""
+"Pieni 16x16 tai 32x32 pikselin ikoni, joka erottaa sivusi selaimen "
+"käyttöliittymässä. Voit etsiä lisää tietoa faviconeista <a href="
+"\"%(favicon_info_url)s\">täältä</a>."
#: conf/skin_general_settings.py:69
msgid "Password login button"
@@ -1663,9 +1913,11 @@ msgstr "Sisäänkirjautumispainike"
#: conf/skin_general_settings.py:71
msgid ""
-"An 88x38 pixel image that is used on the login screen for the password login"
-" button."
-msgstr "88x38 pikselin kuvake, jota käytetään sisäänkirjautumissivulla salasanasisäänkirjautumispainikkeena."
+"An 88x38 pixel image that is used on the login screen for the password login "
+"button."
+msgstr ""
+"88x38 pikselin kuvake, jota käytetään sisäänkirjautumissivulla "
+"salasanasisäänkirjautumispainikkeena."
#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
@@ -1674,9 +1926,12 @@ msgstr "Näytä kaikki UI-toiminnot kaikille käyttäjille"
#: conf/skin_general_settings.py:86
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 "Jos klikkaat ruutua, kaikki foorumin toiminnot näytetään käyttäjille riippumatta heidän maineestaan, mutta maineeseen ja ylläpitoon liittyvät säännöt ovat silti voimassa toimintoja käyttäessä."
+"reputation. However to use those functions, moderation rules, reputation and "
+"other limits will still apply."
+msgstr ""
+"Jos klikkaat ruutua, kaikki foorumin toiminnot näytetään käyttäjille "
+"riippumatta heidän maineestaan, mutta maineeseen ja ylläpitoon liittyvät "
+"säännöt ovat silti voimassa toimintoja käyttäessä."
#: conf/skin_general_settings.py:101
msgid "Select skin"
@@ -1694,13 +1949,21 @@ msgstr "HTML:n muokattu osio <HEAD>"
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
-"of the HTML output, where elements such as &lt;script&gt;, &lt;link&gt;, "
-"&lt;meta&gt; may be added. Please, keep in mind that adding external "
-"javascript to the &lt;HEAD&gt; is not recommended because it slows loading "
-"of the pages. Instead, it will be more efficient to place links to the "
-"javascript files into the footer. <strong>Note:</strong> if you do use this "
-"setting, please test the site with the W3C HTML validator service."
-msgstr "<strong>Käyttääksesi tätä asetusta</strong>, klikkaa ruutua \"Muokkaa HTML:ää <HEAD>\" yllä. Tämän laatikon sisältö liitetään HTML-outputin &lt;HEAD&gt-osioon, jossa voit lisätä elementtejä kuten &lt;script&gt;, &lt;link&gt; ja &lt;meta&gt. Muista, että ulkoisen javascriptin lisäämistä &lt;HEAD&gt:iin ei suositella, sillä se hidastaa sivujen lataamista. Tämän sijaan tehokkaampaa on sijoittaa javascript-tiedostot sivun alaosaan (footeriin). <strong>Huom.:</strong> jos käytät tätä asetusta, kokeile sivua W3C HTML-validaattoripalvelulla."
+"of the HTML output, where elements such as &lt;script&gt;, &lt;link&gt;, &lt;"
+"meta&gt; may be added. Please, keep in mind that adding external javascript "
+"to the &lt;HEAD&gt; is not recommended because it slows loading of the "
+"pages. Instead, it will be more efficient to place links to the javascript "
+"files into the footer. <strong>Note:</strong> if you do use this setting, "
+"please test the site with the W3C HTML validator service."
+msgstr ""
+"<strong>Käyttääksesi tätä asetusta</strong>, klikkaa ruutua \"Muokkaa HTML:"
+"ää <HEAD>\" yllä. Tämän laatikon sisältö liitetään HTML-outputin &lt;HEAD&gt-"
+"osioon, jossa voit lisätä elementtejä kuten &lt;script&gt;, &lt;link&gt; ja "
+"&lt;meta&gt. Muista, että ulkoisen javascriptin lisäämistä &lt;HEAD&gt:iin "
+"ei suositella, sillä se hidastaa sivujen lataamista. Tämän sijaan "
+"tehokkaampaa on sijoittaa javascript-tiedostot sivun alaosaan (footeriin). "
+"<strong>Huom.:</strong> jos käytät tätä asetusta, kokeile sivua W3C HTML-"
+"validaattoripalvelulla."
#: conf/skin_general_settings.py:145
msgid "Custom header additions"
@@ -1708,12 +1971,18 @@ msgstr "Oman headerin liitännäiset"
#: conf/skin_general_settings.py:147
msgid ""
-"Header is the bar at the top of the content that contains user info and site"
-" links, and is common to all pages. Use this area to enter contents of the "
+"Header is the bar at the top of the content that contains user info and site "
+"links, and is common to all pages. Use this area to enter contents of the "
"headerin the HTML format. When customizing the site header (as well as "
"footer and the HTML &lt;HEAD&gt;), use the HTML validation service to make "
"sure that your input is valid and works well in all browsers."
-msgstr "Header on sisällön yläosassa sijaitseva palkki, joka sisältää käyttäjän tietoja sekä linkkejä sivuille ja on samanlainen kaikilla sivuilla. Käytä tätä aluetta lisätäksesi sisältöä headeriin HTML-muodossa. Kun muokkaat headeriä (samoin kuin footeria ja HTML &lt;HEAD&gt;:a), käytä HTML-validaattoripalvelua varmistaaksesi että koodisi on oikein kirjoitettua ja toimii hyvin kaikissa selaimissa."
+msgstr ""
+"Header on sisällön yläosassa sijaitseva palkki, joka sisältää käyttäjän "
+"tietoja sekä linkkejä sivuille ja on samanlainen kaikilla sivuilla. Käytä "
+"tätä aluetta lisätäksesi sisältöä headeriin HTML-muodossa. Kun muokkaat "
+"headeriä (samoin kuin footeria ja HTML &lt;HEAD&gt;:a), käytä HTML-"
+"validaattoripalvelua varmistaaksesi että koodisi on oikein kirjoitettua ja "
+"toimii hyvin kaikissa selaimissa."
#: conf/skin_general_settings.py:162
msgid "Site footer mode"
@@ -1723,7 +1992,9 @@ msgstr "Sivun footerin moodi"
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
-msgstr "Footer on sisällön alaosa, joka on samanlainen kaikilla sivuilla. Voit estää, muokata tai käyttää vakiofooteria."
+msgstr ""
+"Footer on sisällön alaosa, joka on samanlainen kaikilla sivuilla. Voit "
+"estää, muokata tai käyttää vakiofooteria."
#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
@@ -1736,7 +2007,12 @@ msgid ""
"footer in the HTML format. When customizing the site footer (as well as the "
"header and HTML &lt;HEAD&gt;), use the HTML validation service to make sure "
"that your input is valid and works well in all browsers."
-msgstr "<strong>Salliaksesi tämän toiminnon</strong>, valitse 'muokkaa' \"Sivun footerin moodi\" -kohdassa yllä. Käytä tätä aluetta lisätäksesi sisältöä footeriin HTML-muodossa. Kun muokkaat sivun footeria (samoin kuin headeria ja HTML &lt;HEAD&gt;:a), käytä HTML-validaattoripalvelua varmistaaksesi että koodisi on oikein kirjoitettua ja toimii hyvin kaikissa selaimissa."
+msgstr ""
+"<strong>Salliaksesi tämän toiminnon</strong>, valitse 'muokkaa' \"Sivun "
+"footerin moodi\" -kohdassa yllä. Käytä tätä aluetta lisätäksesi sisältöä "
+"footeriin HTML-muodossa. Kun muokkaat sivun footeria (samoin kuin headeria "
+"ja HTML &lt;HEAD&gt;:a), käytä HTML-validaattoripalvelua varmistaaksesi että "
+"koodisi on oikein kirjoitettua ja toimii hyvin kaikissa selaimissa."
#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
@@ -1746,7 +2022,9 @@ msgstr "Sovella omaa tyyliä (CSS)"
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
-msgstr "Klikkaa raksi ruutuun, jos haluat muuttaa lomakkeesi tyyliä lisäämällä omia tyylisääntöjä (ks. seuraava)"
+msgstr ""
+"Klikkaa raksi ruutuun, jos haluat muuttaa lomakkeesi tyyliä lisäämällä omia "
+"tyylisääntöjä (ks. seuraava)"
#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
@@ -1756,10 +2034,15 @@ msgstr "Oma tyyli (CSS)"
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
-"default style sheet rules. The custom style sheet will be served dynamically"
-" at url \"&lt;forum url&gt;/custom.css\", where the \"&lt;forum url&gt; part"
-" depends (default is empty string) on the url configuration in your urls.py."
-msgstr "<strong>Käyttääksesi tätä toimintoa</strong>, klikkaa raksi \"Sovella omaa tyyliä\" -ruutuun yllä. Tähän ikkunaan lisätyt CSS-säännöt tulevat voimaan vakiotyylisääntöjen jälkeen. Oman tyylin palvelin toimii URL:ssä \"&lt;forum url&gt;/custom.css\", jossa \"&lt;forum url&gt; -osio riippuu (vakiona tyhjä) URL-asetuksista urls.py-asetuksissasi."
+"default style sheet rules. The custom style sheet will be served dynamically "
+"at url \"&lt;forum url&gt;/custom.css\", where the \"&lt;forum url&gt; part "
+"depends (default is empty string) on the url configuration in your urls.py."
+msgstr ""
+"<strong>Käyttääksesi tätä toimintoa</strong>, klikkaa raksi \"Sovella omaa "
+"tyyliä\" -ruutuun yllä. Tähän ikkunaan lisätyt CSS-säännöt tulevat voimaan "
+"vakiotyylisääntöjen jälkeen. Oman tyylin palvelin toimii URL:ssä \"&lt;"
+"forum url&gt;/custom.css\", jossa \"&lt;forum url&gt; -osio riippuu (vakiona "
+"tyhjä) URL-asetuksista urls.py-asetuksissasi."
#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
@@ -1767,7 +2050,9 @@ msgstr "Lisää oma javascriptisi"
#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
-msgstr "Klikkaa raksi ruutuun salliaksesi javascriptin, jonka voit lisätä seuraavaan ruutuun"
+msgstr ""
+"Klikkaa raksi ruutuun salliaksesi javascriptin, jonka voit lisätä seuraavaan "
+"ruutuun"
#: conf/skin_general_settings.py:243
msgid "Custom javascript"
@@ -1775,14 +2060,20 @@ msgstr "Oma javascript"
#: conf/skin_general_settings.py:245
msgid ""
-"Type or paste plain javascript that you would like to run on your site. Link"
-" to the script will be inserted at the bottom of the HTML output and will be"
-" served at the url \"&lt;forum url&gt;/custom.js\". Please, bear in mind "
-"that your javascript code may break other functionalities of the site and "
-"that the behavior may not be consistent across different browsers "
-"(<strong>to enable your custom code</strong>, check \"Add custom "
-"javascript\" option above)."
-msgstr "Kirjoita tai liitä javascriptiä, jonka haluaisit suoritettavan omalla sivullasi. Linkki scriptiin lisätään HTML-outputin loppuun ja sen palvelin toimii URL:ssä \"&lt;forum url&gt;/custom.js\". Muista, että javascript-koodisi saattaa vaurioittaa sivun muita toimintoja, eikä välttämättä käyttäydy samalla lailla kaikissa selaimissa (<strong>salliaksesi oman koodin</strong>, klikkaa raksi \"Lisää oma javascriptisi\" -ruutuun yllä.)"
+"Type or paste plain javascript that you would like to run on your site. Link "
+"to the script will be inserted at the bottom of the HTML output and will be "
+"served at the url \"&lt;forum url&gt;/custom.js\". Please, bear in mind that "
+"your javascript code may break other functionalities of the site and that "
+"the behavior may not be consistent across different browsers (<strong>to "
+"enable your custom code</strong>, check \"Add custom javascript\" option "
+"above)."
+msgstr ""
+"Kirjoita tai liitä javascriptiä, jonka haluaisit suoritettavan omalla "
+"sivullasi. Linkki scriptiin lisätään HTML-outputin loppuun ja sen palvelin "
+"toimii URL:ssä \"&lt;forum url&gt;/custom.js\". Muista, että javascript-"
+"koodisi saattaa vaurioittaa sivun muita toimintoja, eikä välttämättä "
+"käyttäydy samalla lailla kaikissa selaimissa (<strong>salliaksesi oman "
+"koodin</strong>, klikkaa raksi \"Lisää oma javascriptisi\" -ruutuun yllä.)"
#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
@@ -1835,7 +2126,9 @@ msgstr "Salli Akismet-roskapostintorjunta (vaatii alla olevat avaimet)"
#: conf/spam_and_moderation.py:21
#, python-format
msgid "To get an Akismet key please visit <a href=\"%(url)s\">Akismet site</a>"
-msgstr "Voit hakea Akismet-koodin Akismetin nettisivulta: <a href=\"%(url)s\">Akismet site</a>"
+msgstr ""
+"Voit hakea Akismet-koodin Akismetin nettisivulta: <a href=\"%(url)s"
+"\">Akismet site</a>"
#: conf/spam_and_moderation.py:31
msgid "Akismet key for spam detection"
@@ -1892,21 +2185,28 @@ msgstr "Vakioavatar käyttäjille"
#: conf/user_settings.py:70
msgid ""
"To change the avatar image, select new file, then submit this whole form."
-msgstr "Vaihtaaksesi avatarin kuvaketta, valitse uusi tiedosto ja lähetä sitten tämä koko sivu."
+msgstr ""
+"Vaihtaaksesi avatarin kuvaketta, valitse uusi tiedosto ja lähetä sitten tämä "
+"koko sivu."
#: conf/user_settings.py:83
msgid "Use automatic avatars from gravatar.com"
msgstr "Käytä automaattisia avatareja osoitteesta gravatar.com"
#: conf/user_settings.py:85
-#, python-format
+#, fuzzy
msgid ""
"Check this option if you want to allow the use of gravatar.com for avatars. "
"Please, note that this feature might take about 10 minutes to become fully "
"effective. You will have to enable uploaded avatars as well. For more "
-"information, please visit <a href=\"http://askbot.org/doc/optional-"
-"modules.html#uploaded-avatars\">this page</a>."
-msgstr "Klikkaa raksi ruutuun, jos haluat sallia gravatar.comin käytön avatarien hakemiseen. Huomaa, että tämän toiminnon 100%% aktivoiminen saattaa kestää noin 10 minuuttia. Sinun on sallittava myös itse ladattavat avatarit. Lisätietoa löydät <a href=\"http://askbot.org/doc/optional-modules.html#uploaded-avatars\">täältä</a>."
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+"Klikkaa raksi ruutuun, jos haluat sallia gravatar.comin käytön avatarien "
+"hakemiseen. Huomaa, että tämän toiminnon 100% aktivoiminen saattaa kestää "
+"noin 10 minuuttia. Sinun on sallittava myös itse ladattavat avatarit. "
+"Lisätietoa löydät <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">täältä</a>."
#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
@@ -1917,7 +2217,10 @@ msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
-msgstr "Tämän valinnan avulla voit asettaa jonkin avatar-tyypin vakioksi sähköpostiosoitteille, joilla ei ole gravatar-ikonia. Etsi lisätietoa <a href=\"http://en.gravatar.com/site/implement/images/\">täältä</a>."
+msgstr ""
+"Tämän valinnan avulla voit asettaa jonkin avatar-tyypin vakioksi "
+"sähköpostiosoitteille, joilla ei ole gravatar-ikonia. Etsi lisätietoa <a "
+"href=\"http://en.gravatar.com/site/implement/images/\">täältä</a>."
#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
@@ -1959,7 +2262,9 @@ msgstr "Merkinnän automaattiseen poistamiseen tarvittava liputusten määrä"
msgid ""
"Minimum days to accept an answer, if it has not been accepted by the "
"question poster"
-msgstr "Vähimmäismäärä päiviä vastauksen hyväksymiseen, jos kysymyksen kysyjä ei ole hyväksynyt sitä"
+msgstr ""
+"Vähimmäismäärä päiviä vastauksen hyväksymiseen, jos kysymyksen kysyjä ei ole "
+"hyväksynyt sitä"
#: conf/widgets.py:13
msgid "Embeddable widgets"
@@ -1972,11 +2277,15 @@ msgstr "Näytettävien kysymysten määrä"
#: conf/widgets.py:28
msgid ""
"To embed the widget, add the following code to your site (and fill in "
-"correct base url, preferred tags, width and height):<iframe "
-"src=\"{{base_url}}/widgets/questions?tags={{comma-separated-tags}}\" "
-"width=\"100%\" height=\"300\"scrolling=\"no\"><p>Your browser does not "
-"support iframes.</p></iframe>"
-msgstr "Upottaaksesi widgetin, lisää seuraava koodi sivullesi (ja syötä alkuperäinen URL, haluamasi tagit, leveys ja korkeus): <iframe src=\"{{base_url}}/widgets/questions?tags={{comma-separated-tags}}\" width=\"100%\" height=\"300\"scrolling=\"no\"><p>Selaimesi ei tue iframejä.</p></iframe>"
+"correct base url, preferred tags, width and height):<iframe src="
+"\"{{base_url}}/widgets/questions?tags={{comma-separated-tags}}\" width=\"100%"
+"\" height=\"300\"scrolling=\"no\"><p>Your browser does not support iframes.</"
+"p></iframe>"
+msgstr ""
+"Upottaaksesi widgetin, lisää seuraava koodi sivullesi (ja syötä alkuperäinen "
+"URL, haluamasi tagit, leveys ja korkeus): <iframe src=\"{{base_url}}/widgets/"
+"questions?tags={{comma-separated-tags}}\" width=\"100%\" height="
+"\"300\"scrolling=\"no\"><p>Selaimesi ei tue iframejä.</p></iframe>"
#: conf/widgets.py:73
msgid "CSS for the questions widget"
@@ -2026,325 +2335,339 @@ msgstr "roskapostia tai mainostusta"
msgid "too localized"
msgstr "liian paikallinen"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "uusin"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "vanhin"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "aktiivinen"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "inaktiivinen"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "kuumin"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "kylmin"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "eniten äänestetty"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "vähiten äänestetty"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "merkitys"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "kaikki"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "vastaamattomat"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "suosikki"
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr "lista"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr "pilvi"
-#: const/__init__.py:73
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "Ei vastauksia"
-#: const/__init__.py:74
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "Kysymyksellä ei ole hyväksyttyjä vastauksia"
-#: const/__init__.py:119
+#: const/__init__.py:125
msgid "asked a question"
msgstr "esitti kysymyksen"
-#: const/__init__.py:120
+#: const/__init__.py:126
msgid "answered a question"
msgstr "vastasi"
-#: const/__init__.py:121
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "kommentoi kysymystä"
-#: const/__init__.py:122
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "kommentoi vastausta"
-#: const/__init__.py:123
+#: const/__init__.py:129
msgid "edited question"
msgstr "muokkasi kysymystä"
-#: const/__init__.py:124
+#: const/__init__.py:130
msgid "edited answer"
msgstr "muokkasi vastausta"
-#: const/__init__.py:125
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "sai mitalin"
-#: const/__init__.py:126
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "merkitty parhaaksi vastaukseksi"
-#: const/__init__.py:127
+#: const/__init__.py:133
msgid "upvoted"
msgstr "saanut positiivisia ääniä"
-#: const/__init__.py:128
+#: const/__init__.py:134
msgid "downvoted"
msgstr "saanut negatiivisia ääniä"
-#: const/__init__.py:129
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "perui äänen"
-#: const/__init__.py:130
+#: const/__init__.py:136
msgid "deleted question"
msgstr "poisti kysymyksen"
-#: const/__init__.py:131
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "poisti vastauksen"
-#: const/__init__.py:132
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "merkitsi loukkaavaksi"
-#: const/__init__.py:133
+#: const/__init__.py:139
msgid "updated tags"
msgstr "päivitetyt tagit"
-#: const/__init__.py:134
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "valitsi suosikiksi"
-#: const/__init__.py:135
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "täydensi käyttäjäprofiilin"
-#: const/__init__.py:136
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "sähköpostipäivitys lähetettiin käyttäjälle"
-#: const/__init__.py:139
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr "muistutus vastaamattomasta kysymyksestä lähetetty"
-#: const/__init__.py:143
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr "Muistutus parhaan vastauksen hyväksymisestä lähetetty"
-#: const/__init__.py:145
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "mainittu postauksessa"
-#: const/__init__.py:196
-msgid "question_answered"
+#: const/__init__.py:202
+#, fuzzy
+msgid "answered question"
msgstr "vastasi"
-#: const/__init__.py:197
-msgid "question_commented"
-msgstr "kommentoi"
-
-#: const/__init__.py:198
-msgid "answer_commented"
-msgstr "vastausta kommentoitu"
-
-#: const/__init__.py:199
-msgid "answer_accepted"
-msgstr "vastaus hyväksytty"
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "muokkasi vastausta"
-#: const/__init__.py:203
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[suljettu]"
-#: const/__init__.py:204
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[poistettu]"
-#: const/__init__.py:205 views/readers.py:555
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "ensimmäinen versio"
-#: const/__init__.py:206
+#: const/__init__.py:212
msgid "retagged"
msgstr "tagätty uudelleen"
-#: const/__init__.py:214
+#: const/__init__.py:220
msgid "off"
msgstr "pois päältä"
-#: const/__init__.py:215
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "älä näytä hylättyjä tagejä"
-#: const/__init__.py:216
+#: const/__init__.py:222
msgid "only selected"
msgstr "vain valitut"
-#: const/__init__.py:220
+#: const/__init__.py:226
msgid "instantly"
msgstr "välittömästi"
-#: const/__init__.py:221
+#: const/__init__.py:227
msgid "daily"
msgstr "päivittäin"
-#: const/__init__.py:222
+#: const/__init__.py:228
msgid "weekly"
msgstr "viikottain"
-#: const/__init__.py:223
+#: const/__init__.py:229
msgid "no email"
msgstr "ei sähköpostia"
-#: const/__init__.py:230
+#: const/__init__.py:236
msgid "identicon"
msgstr "identicon"
-#: const/__init__.py:231
+#: const/__init__.py:237
msgid "mystery-man"
msgstr "mystery-man"
-#: const/__init__.py:232
+#: const/__init__.py:238
msgid "monsterid"
msgstr "monsterid"
-#: const/__init__.py:233
+#: const/__init__.py:239
msgid "wavatar"
msgstr "wavatar"
-#: const/__init__.py:234
+#: const/__init__.py:240
msgid "retro"
msgstr "retro"
-#: const/__init__.py:281 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "kulta"
-#: const/__init__.py:282 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "hopea"
-#: const/__init__.py:283 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
-msgstr "bronssi"
+msgstr "pronssi"
-#: const/__init__.py:295
+#: const/__init__.py:301
msgid "None"
msgstr "Ei mitään"
-#: const/__init__.py:296
+#: const/__init__.py:302
msgid "Gravatar"
msgstr "Gravatar"
-#: const/__init__.py:297
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr "Ladattu avatar"
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr "Relevanteimmat kysymykset"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr "klikkaa nähdäksesi relevanteimmat kysymykset"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "oleellisuus"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "klikkaa nähdäksesi vanhimmat kysymykset"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "päivämäärä"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "klikkaa nähdäksesi uusimmat kysymykset"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "klikkaa nähdäksesi vanhimmat päivitetyt kysymykset"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "päivitetty"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "klikkaa nähdäksesi viimeksi päivitetyt kysymykset"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr "klikkaa nähdäksesi kysymykset, joihin on vastattu vähiten"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "vastaukset"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr "klikkaa nähdäksesi kysymykset, joihin on vastattu eniten"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "klikkaa nähdäksesi vähiten äänestetyt kysymykset"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "äänet"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "klikkaa nähdäksesi äänestetyimmät kysymykset"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
-msgstr "Tervetuloa! Ole hyvä ja aseta sähköpostiosoite profiiliisi (tärkeää!) ja vaihda ruutunimeä, jos niin on tarpeen."
+msgstr ""
+"Tervetuloa! Ole hyvä ja aseta sähköpostiosoite profiiliisi (tärkeää!) ja "
+"vaihda ruutunimeä, jos niin on tarpeen."
#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
@@ -2395,8 +2718,9 @@ msgid "Your user name (<i>required</i>)"
msgstr "Käyttäjätunnuksesi (<i>pakollinen</i>)"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Valitettavasti tätä käyttäjänimeä ei ole olemassa"
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "käyttäjää ei ole tällä nimellä"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
@@ -2437,7 +2761,7 @@ msgid "%(site)s user name and password"
msgstr "%(site)s käyttäjänimi ja salasana"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "Luo salasanalla suojattu tili"
@@ -2497,7 +2821,9 @@ msgstr "Vaihda %(provider)s:n salasana"
#: deps/django_authopenid/util.py:612
#, python-format
msgid "Click to see if your %(provider)s signin still works for %(site_name)s"
-msgstr "Klikkaa tarkistaaksesi, toimiiko %(provider)s: sisäänkirjautuminen vielä %(site_name)s sivustolle"
+msgstr ""
+"Klikkaa tarkistaaksesi, toimiiko %(provider)s: sisäänkirjautuminen vielä "
+"%(site_name)s sivustolle"
#: deps/django_authopenid/util.py:621
#, python-format
@@ -2524,71 +2850,77 @@ msgstr "Kirjaudu sisään %(provider)s:n tilillä"
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID %(openid_url)s ei kelpaa"
-#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:412
-#: deps/django_authopenid/views.py:440
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
-msgstr "Ikävä kyllä %(provider)s:iin yhdistäessä kohdattiin ongelma, yritä uudelleen tai käytä toista palveluntarjoajaa"
+msgstr ""
+"Ikävä kyllä %(provider)s:iin yhdistäessä kohdattiin ongelma, yritä uudelleen "
+"tai käytä toista palveluntarjoajaa"
-#: deps/django_authopenid/views.py:362
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr "Uusi salasanasi on tallennettu"
-#: deps/django_authopenid/views.py:466
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr "Salasanayhdistelmä väärin"
-#: deps/django_authopenid/views.py:568
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr "Klikkaa mitä tahansa alla olevista kuvakkeista kirjautuaksesi sisään"
-#: deps/django_authopenid/views.py:570
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr "Tilin elvyttämissähköposti lähetetty"
-#: deps/django_authopenid/views.py:573
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr "Lisää ainakin yksi sisäänkirjautumistapa."
-#: deps/django_authopenid/views.py:575
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
-msgstr "Halutessasi lisää, poista tai vahvista uudelleen sisäänkirjautumistapojasi"
+msgstr ""
+"Halutessasi lisää, poista tai vahvista uudelleen sisäänkirjautumistapojasi"
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr "Odota hetki! Tilisi on elvytetty, mutta ..."
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr "Valitettavasti tilin elvytyskoodi on väärä tai ei ole enää voimassa"
-#: deps/django_authopenid/views.py:652
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr "Sisäänkirjautumistapaa %(provider_name)s ei ole olemassa"
-#: deps/django_authopenid/views.py:658
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
-msgstr "Hups, valitettavasti on tapahtunut virhe. Ole hyvä, ja yritä uudelleen"
+msgstr ""
+"Hups, valitettavasti on tapahtunut virhe. Ole hyvä, ja yritä uudelleen"
-#: deps/django_authopenid/views.py:749
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr "%(provider)s-sisäänkirjautumisesi toimii hyvin"
-#: deps/django_authopenid/views.py:1060 deps/django_authopenid/views.py:1066
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
-msgstr "Your email needs to be validated. Please see details <a id='validate_email_alert' href='%(details_url)s'>here</a>."
+msgstr ""
+"Your email needs to be validated. Please see details <a "
+"id='validate_email_alert' href='%(details_url)s'>here</a>."
-#: deps/django_authopenid/views.py:1087
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr "Elvytä %(site)s-tilisi"
-#: deps/django_authopenid/views.py:1159
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr "Tarkista sähköpostisi ja klikkaa liitteenä olevaa linkkiä"
@@ -2633,7 +2965,7 @@ msgstr "Dokumentaatio"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:136
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Vaihda salasana"
@@ -2693,86 +3025,52 @@ msgstr "Luhista kaikki"
msgid "Congratulations, you are now an Administrator"
msgstr "Onnittelut, olet nyt ylläpitäjä"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr "Tämä komento saattaa helpottaa LDAP-salasananvahvistustoimintoon siirtymistä luomalla tallenteen jokaisen käyttäjätilin LDAP-yhteyksistä. Oletettavasti LDAP-käyttäjätunnukset ovat samat kuin sivulle rekisteröidyt käyttäjätunnukset. Ennen tämän komennon suorittamista LDAP-parametrit on asennettava sivun asetusten \"Ulkopuoliset avaimet\"-osiossa."
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr "<p>Esittääksesi kysymyksen sähköpostitse, ole hyvä ja:</p>\n<ul>⏎\n <li>Muotoile aihe-kenttä näin: [Tagi1; Tagi2] Kysymyksen aihe</li>⏎\n <li>Kirjoita kysymyksesi yksityiskohdat sähköpostin leipätekstiin</li>⏎\n</ul>⏎\n<p>Huomaa, että tagit voivat koostua myös useammista sanoista, ja tagit⏎\nvoidaan erottaa toisistaan pilkulla tai puolipisteellä</p>⏎\n"
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr "<p>Valitettavasti kysymyksesi julkaisussa tapahtui virhe - ole hyvä ja ota yhteyttä %(site)s:n ylläpitoon</p>"
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a "
-"href=\"%(url)s\">register first</a></p>"
-msgstr "<p>Valitettavasti sinun on rekisteröidyttävä <a href=\"%(url)s\">täällä</a> voidaksesi kysyä kysymyksiä %(site)s:lla sähköpostitse.</p>"
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr "<p>Valitettavasti kysymystäsi ei voitu lisätä sivulle käyttäjätilisi riittämättömien oikeuksien vuoksi.</p>"
-
-#: management/commands/send_accept_answer_reminders.py:56
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr "Hyväksy paras vastaus %(question_count)d:lle kysymyksistäsi"
-#: management/commands/send_accept_answer_reminders.py:61
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr "Ole hyvä ja valitse paras vastaus tähän kysymykseen:"
-#: management/commands/send_accept_answer_reminders.py:63
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr "Ole hyvä ja hyväksy paras vastaus näihin kysymyksiin"
-#: management/commands/send_email_alerts.py:413
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] "%(question_count)d päivitetty kysymys aiheesta %(topics)s"
msgstr[1] "%(question_count)d päivitettyä kysymystä aiheesta %(topics)s"
-#: management/commands/send_email_alerts.py:423
+#: management/commands/send_email_alerts.py:425
#, python-format
-msgid "%(name)s, this is an update message header for %(num)d question"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
msgid_plural ""
-"%(name)s, this is an update message header for %(num)d questions"
-msgstr[0] "<p>Hyvä %(name)s,</p></p>Tätä kysymystä on päivitetty Q&A-foorumilla:</p>"
-msgstr[1] "<p>Hyvä %(name)s,</p><p>Näitä %(num)d kysymystä on päivitetty Q&A-foorumilla:</p>"
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
+msgstr[0] ""
+msgstr[1] ""
-#: management/commands/send_email_alerts.py:440
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "uusi kysymys"
-#: management/commands/send_email_alerts.py:465
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
-msgstr "<p>Muista, että voit aina <a href='%(email_settings_link)s'>säätää</a> sähköpostipäivitysten taajuutta tai poistaa ne kokonaan.<br/>Jos uskot tämän viestin olleen lähetetty vahingossa, ota yhteyttä foorumin ylläpitoon sähköpostitse osoitteeseen %(admin_email)s.</p><p>Ystävällisesti,,</p><p>foorumipalvelimesi.</p>"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
+msgstr ""
-#: management/commands/send_unanswered_question_reminders.py:58
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2784,83 +3082,85 @@ msgstr[1] "%(question_count)d vastaamatonta kysymystä aiheesta %(topics)s"
msgid "Please log in to use %s"
msgstr "Ole hyvä ja kirjaudu sisään käyttääksesi %s"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
-msgstr "Valitettavasti tilisi on lukittu, etkä voi hyväksyä tai hylätä parhaita vastauksia"
+msgstr ""
+"Valitettavasti tilisi on lukittu, etkä voi hyväksyä tai hylätä parhaita "
+"vastauksia"
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
-msgstr "Valitettavasti tilisi on jäähyllä, etkä voi hyväksyä tai hylätä parhaita vastauksia"
+msgstr ""
+"Valitettavasti tilisi on jäähyllä, etkä voi hyväksyä tai hylätä parhaita "
+"vastauksia"
-#: models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
-msgstr "Tarvitset >%(points)s pistettä voidaksesi hyväksyä tai hylätä oman vastauksesi omaan kysymykseesi"
+msgstr ""
+"Tarvitset >%(points)s pistettä voidaksesi hyväksyä tai hylätä oman "
+"vastauksesi omaan kysymykseesi"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
-msgstr "Valitettavasti voit hyväksyä tämän vastauksen vasta %(will_be_able_at)s:n jälkeen"
+msgstr ""
+"Valitettavasti voit hyväksyä tämän vastauksen vasta %(will_be_able_at)s:n "
+"jälkeen"
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
-msgstr "Valitettavasti vain moderaattorit tai kysymyksen alkuperäinen esittäjä - %(username)s - voivat hyväksyä tai hylätä parhaan vastauksen"
+msgstr ""
+"Valitettavasti vain moderaattorit tai kysymyksen alkuperäinen esittäjä - "
+"%(username)s - voivat hyväksyä tai hylätä parhaan vastauksen"
-#: models/__init__.py:386
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "et voi äänestää omia postauksia"
-#: models/__init__.py:389
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "Valitettavasti tilisi näyttää olevan lukittu"
-#: models/__init__.py:394
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "Valitettavasti tilisi näyttää olevan jäähyllä"
-#: models/__init__.py:404
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr "tarvitset >%(points)s points äänestämiseen "
-#: models/__init__.py:410
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ">%(points)s mainetta tarvitaan"
-#: models/__init__.py:425
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "Valitettavasti lukitut käyttäjät eivät voi ladata tiedostoja"
-#: models/__init__.py:426
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr "Valitettavasti jäähyllä olevat käyttäjät eivät voi ladata tiedostoja"
-#: models/__init__.py:428
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "liitetiedoston lisääminen edellyttää, että mainepisteitä on yli >%(min_rep)s"
-
-#: models/__init__.py:447 models/__init__.py:514 models/__init__.py:980
-msgid "blocked users cannot post"
-msgstr "Valitettavasti tilisi näyttää olevan lukittu, etkä voi lisätä uusia merkintöjä, ennen kuin ongelma on ratkaistu. Ole hyvä ja ota yhteyttä foorumin ylläpitoon ongelman ratkaisemiseksi."
-
-#: models/__init__.py:448 models/__init__.py:983
-msgid "suspended users cannot post"
-msgstr "Valitettavasti tilisi näyttää olevan jäähyllä, etkä voi lisätä uusia merkintöjä ennen kuin ongelma on ratkaistu. Voit kuitenkin muokata aiemmin kirjoittamiasi merkintöjä. Ole hyvä ja ota yhteyttä foorumin ylläpitoon ongelman ratkaisemiseksi."
+msgid "sorry, file uploading requires karma >%(min_rep)s"
+msgstr ""
-#: models/__init__.py:475
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2868,337 +3168,396 @@ msgid ""
msgid_plural ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
"minutes from posting"
-msgstr[0] "Valitettavasti kommentteja (viimeisintä lukuun ottamatta) voi muokata vain %(minutes)s minuutin ajan julkaisemisen jälkeen"
-msgstr[1] "Valitettavasti kommentteja (viimeisintä lukuun ottamatta) voi muokata vain %(minutes)s minuutin ajan julkaisemisen jälkeen"
-
-#: models/__init__.py:487
+msgstr[0] ""
+"Valitettavasti kommentteja (viimeisintä lukuun ottamatta) voi muokata vain "
+"%(minutes)s minuutin ajan julkaisemisen jälkeen"
+msgstr[1] ""
+"Valitettavasti kommentteja (viimeisintä lukuun ottamatta) voi muokata vain "
+"%(minutes)s minuutin ajan julkaisemisen jälkeen"
+
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
-msgstr "Valitettavasti vain merkintöjen kirjoittajat ja moderaattorit voivat muokata kommentteja"
+msgstr ""
+"Valitettavasti vain merkintöjen kirjoittajat ja moderaattorit voivat muokata "
+"kommentteja"
-#: models/__init__.py:500
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
-msgstr "Valitettavasti tilisi on jäähyllä, ja voit kommentoida vain omia merkintöjäsi"
+msgstr ""
+"Valitettavasti tilisi on jäähyllä, ja voit kommentoida vain omia merkintöjäsi"
-#: models/__init__.py:504
+#: models/__init__.py:523
#, 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 "Valitettavasti tarvitset vähintään %(min_rep)s pisteen maineen voidaksesi kommentoida merkintöjä. Voit kuitenkin kommentoida omia merkintöjäsi ja omiin kysymyksiisi esittämiäsi vastauksia"
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s pisteen maineen voidaksesi "
+"kommentoida merkintöjä. Voit kuitenkin kommentoida omia merkintöjäsi ja "
+"omiin kysymyksiisi esittämiäsi vastauksia"
-#: models/__init__.py:532
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
-msgstr "Tämä merkintä on poistettu, ja näkyy vain merkinnän kirjoittajalle sekä sivun ylläpitäjille ja moderaattoreille"
+msgstr ""
+"Tämä merkintä on poistettu, ja näkyy vain merkinnän kirjoittajalle sekä "
+"sivun ylläpitäjille ja moderaattoreille"
-#: models/__init__.py:549
+#: models/__init__.py:570
msgid ""
-"Sorry, only moderators, site administrators and post owners can edit deleted"
-" posts"
-msgstr "Valitettavasti vain moderaattorit, ylläpitäjät ja merkintöjen kirjoittavat voivat muokata poistettuja merkintöjä"
+"Sorry, only moderators, site administrators and post owners can edit deleted "
+"posts"
+msgstr ""
+"Valitettavasti vain moderaattorit, ylläpitäjät ja merkintöjen kirjoittavat "
+"voivat muokata poistettuja merkintöjä"
-#: models/__init__.py:564
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr "Valitettavasti tilisi on lukittu, etkä voi muokata merkintöjä"
-#: models/__init__.py:568
-msgid ""
-"Sorry, since your account is suspended you can edit only your own posts"
-msgstr "Valitettavasti tilisi on jäähyllä, ja voit muokata vain omia merkintöjäsi"
+#: models/__init__.py:589
+msgid "Sorry, since your account is suspended you can edit only your own posts"
+msgstr ""
+"Valitettavasti tilisi on jäähyllä, ja voit muokata vain omia merkintöjäsi"
-#: models/__init__.py:573
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen muokataksesi wiki-merkintöjä"
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen muokataksesi wiki-"
+"merkintöjä"
-#: models/__init__.py:580
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen muokataksesi muiden kirjoittamia merkintöjä"
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen muokataksesi muiden "
+"kirjoittamia merkintöjä"
-#: models/__init__.py:643
+#: models/__init__.py:664
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] "Valitettavasti et voi poistaa kysymystäsi, sillä jonkun muun vastaus kysymykseen on saanut positiivisia ääniä"
-msgstr[1] "Valitettavasti et voi postaa kysymystäsi, sillä muiden vastaukset kysymykseen ovat saaneet positiivisia ääniä"
-
-#: models/__init__.py:658
+msgstr[0] ""
+"Valitettavasti et voi poistaa kysymystäsi, sillä jonkun muun vastaus "
+"kysymykseen on saanut positiivisia ääniä"
+msgstr[1] ""
+"Valitettavasti et voi postaa kysymystäsi, sillä muiden vastaukset "
+"kysymykseen ovat saaneet positiivisia ääniä"
+
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr "Valitettavasti tilisi on lukittu, etkä voi poistaa merkintöjä"
-#: models/__init__.py:662
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
-msgstr "Valitettavasti tilisi on jäähyllä, ja voit poistaa vain omia merkintöjäsi"
+msgstr ""
+"Valitettavasti tilisi on jäähyllä, ja voit poistaa vain omia merkintöjäsi"
-#: models/__init__.py:666
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen poistaaksesi muiden merkintöjä "
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen poistaaksesi muiden "
+"merkintöjä "
-#: models/__init__.py:686
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr "Valitettavasti tilisi on lukittu, etkä voi sulkea kysymyksiä"
-#: models/__init__.py:690
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr "Valitettavasti tilisi on jäähyllä, etkä voi sulkea kysymyksiä"
-#: models/__init__.py:694
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen sulkeaksesi muiden merkintöjä "
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen sulkeaksesi muiden "
+"merkintöjä "
-#: models/__init__.py:703
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen sulkeaksesi oman kysymyksesi "
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen sulkeaksesi oman "
+"kysymyksesi "
-#: models/__init__.py:727
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
-msgstr "Valitettavasti vain ylläpitäjät ja moderaattorit, tai merkintöjen kirjoittajat, joilla on vähintään > %(min_rep)s:n maine, voivat avata kysymyksiä uudelleen."
+msgstr ""
+"Valitettavasti vain ylläpitäjät ja moderaattorit, tai merkintöjen "
+"kirjoittajat, joilla on vähintään > %(min_rep)s:n maine, voivat avata "
+"kysymyksiä uudelleen."
-#: models/__init__.py:733
+#: models/__init__.py:754
#, python-format
msgid ""
-"Sorry, to reopen own question a minimum reputation of %(min_rep)s is "
-"required"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen avataksesi oman kysymyksesi uudelleen"
-
-#: models/__init__.py:753
-msgid "cannot flag message as offensive twice"
-msgstr "Olet liputtanut tämän kysymyksen aikaisemmin, ja voit tehdä niin vain kerran."
+"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen avataksesi oman "
+"kysymyksesi uudelleen"
-#: models/__init__.py:758
-msgid "blocked users cannot flag posts"
-msgstr "Valitettavasti tilisi on lukittu, etkä voi liputtaa merkintää loukkaavaksi"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
+msgstr ""
-#: models/__init__.py:760
-msgid "suspended users cannot flag posts"
-msgstr "Valitettavasti tilisi näyttää olevan jäähyllä, etkä voi lisätä uusia merkintöjä, kunnes ongelmasi on ratkaistu. Voit kuitenkin muokata aiemmin kirjoittamiasi merkintöjä. Ole hyvä, ja ota yhteyttä foorumin ylläpitoon ratkaistaksesi ongelman."
+#: models/__init__.py:783
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr "Valitettavasti tilisi on lukittu, etkä voi poistaa merkintöjä"
-#: models/__init__.py:762
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen voidaksesi liputtaa merkintöjä loukkaaviksi"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen tagätäksesi "
+"kysymyksiä uudelleen"
-#: models/__init__.py:781
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "Valitettavasti olet liputtanut merkintöjä loukkaaviksi %(max_flags_per_day)s kertaa, etkä voi ylittää tätä määrää yhden päivän aikana."
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:792
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr "olematonta liputusta ei voi poistaa"
-#: models/__init__.py:797
-msgid "blocked users cannot remove flags"
-msgstr "Valitettavasti tilisi on lukittu, etkä voi poistaa liputuksia"
+#: models/__init__.py:833
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr "Valitettavasti tilisi on lukittu, etkä voi poistaa merkintöjä"
-#: models/__init__.py:799
-msgid "suspended users cannot remove flags"
-msgstr "Valitettavasti tilisi näyttää olevan jäähyllä, etkä voi poistaa liputuksia. Ole hyvä ja ota yhteyttä foorumin ylläpitoon löytääksesi ratkaisun."
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:803
-#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
-msgstr[0] "Valitettavasti tarvitset vähintään %(min_rep)d mainepisteen voidaksesi liputtaa merkintöjä"
-msgstr[1] "Valitettavasti tarvitset vähintään %(min_rep)d mainepistettä voidaksesi liputtaa merkintöjä"
+#: models/__init__.py:843
+#, fuzzy, python-format
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgstr[0] ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen tagätäksesi "
+"kysymyksiä uudelleen"
+msgstr[1] ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen tagätäksesi "
+"kysymyksiä uudelleen"
-#: models/__init__.py:822
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr "sinulla ei ole lupaa poistaa kaikkia liputuksia"
-#: models/__init__.py:823
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr "tällä merkinnällä ei ole liputuksia"
-#: models/__init__.py:847
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
-msgstr "Valitettavasti vain kysymysten kysyjät, ylläpitäjät ja moderaattorit voivat tagätä poistettuja kysymyksiä uudelleen"
+msgstr ""
+"Valitettavasti vain kysymysten kysyjät, ylläpitäjät ja moderaattorit voivat "
+"tagätä poistettuja kysymyksiä uudelleen"
-#: models/__init__.py:854
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr "Valitettavasti tilisi on lukittu, etkä voi tagätä kysymyksiä uudelleen"
-#: models/__init__.py:858
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
-msgstr "Valitettavasti tilisi on jäähyllä, ja voit tagätä vain omia kysymyksiäsi uudelleen"
+msgstr ""
+"Valitettavasti tilisi on jäähyllä, ja voit tagätä vain omia kysymyksiäsi "
+"uudelleen"
-#: models/__init__.py:862
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen tagätäksesi kysymyksiä uudelleen"
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen tagätäksesi "
+"kysymyksiä uudelleen"
-#: models/__init__.py:881
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr "Valitettavasti tilisi on lukittu, etkä voi poistaa kommenttia"
-#: models/__init__.py:885
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
-msgstr "Valitettavasti tilisi on jäähyllä, ja voit poistaa vain omia kommenttejasi"
+msgstr ""
+"Valitettavasti tilisi on jäähyllä, ja voit poistaa vain omia kommenttejasi"
-#: models/__init__.py:889
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
-msgstr "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen voidaksesi poistaa kommentteja"
+msgstr ""
+"Valitettavasti tarvitset vähintään %(min_rep)s:n maineen voidaksesi poistaa "
+"kommentteja"
-#: models/__init__.py:912
-msgid "cannot revoke old vote"
-msgstr "vanhoja ääniä ei voi muuttaa"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1387 utils/functions.py:78
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "%(date)s"
-#: models/__init__.py:1389
+#: models/__init__.py:1471
msgid "in two days"
msgstr "kahdessa päivässä"
-#: models/__init__.py:1391
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr "huomenna"
-#: models/__init__.py:1393
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "%(hr)d:ssa tunnissa"
msgstr[1] "%(hr)d:ssa tunnissa"
-#: models/__init__.py:1395
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "%(min)d:ssä minuutissa"
msgstr[1] "%(min)d:ssä minuutissa"
-#: models/__init__.py:1396
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] "%(days)d:ssä päivässä"
msgstr[1] "%(days)d:ssä päivässä"
-#: models/__init__.py:1398
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
-msgstr "Uusien käyttäjien on odotettava %(days)s päivää, ennen kuin he voivat vastata omaan kysymykseensä. Voit vastata kysymykseen %(left)s:n päivän kuluttua."
+msgstr ""
+"Uusien käyttäjien on odotettava %(days)s päivää, ennen kuin he voivat "
+"vastata omaan kysymykseensä. Voit vastata kysymykseen %(left)s:n päivän "
+"kuluttua."
-#: models/__init__.py:1565 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "Anonyymi"
-#: models/__init__.py:1661
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Sivun ylläpitäjä"
-#: models/__init__.py:1663
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Foorumin Moderaattori"
-#: models/__init__.py:1665
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Käyttäjä jäähyllä"
-#: models/__init__.py:1667
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Lukittu käyttäjä"
-#: models/__init__.py:1669
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Rekisteröity käyttäjä"
-#: models/__init__.py:1671
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Seurattu käyttäjä"
-#: models/__init__.py:1673
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Hyväksytty käyttäjä"
-#: models/__init__.py:1782
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "%(username)s mainepisteet ovat %(reputation)s"
-#: models/__init__.py:1792
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] "yksi kultamitali"
msgstr[1] "%(count)d kultamitalia"
-#: models/__init__.py:1799
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] "yksi hopeamitali"
msgstr[1] "%(count)d hopeamitali"
-#: models/__init__.py:1806
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "yksi pronssimitali"
msgstr[1] "%(count)d pronssimitali"
-#: models/__init__.py:1817
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s ja %(item2)s"
-#: models/__init__.py:1821
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr "käyttäjällä %(user)s on %(badges)s"
-#: models/__init__.py:2287
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr "\"%(title)s\""
-#: models/__init__.py:2424
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
-msgstr "Onneksi olkoon, olet ansainnut '%(badge_name)s'-mitalin. Katso: <a href=\"%(user_profile)s\">your profile</a>."
+msgstr ""
+"Onneksi olkoon, olet ansainnut '%(badge_name)s'-mitalin. Katso: <a href="
+"\"%(user_profile)s\">your profile</a>."
-#: models/__init__.py:2626 views/commands.py:445
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr "Kiitos! Tagitilauksesi on nyt tallennettu."
#: models/badges.py:129
#, python-format
msgid "Deleted own post with %(votes)s or more upvotes"
-msgstr "Oma merkintä poistettu %(votes)s:n tai useamman positiivisen äänen jälkeen"
+msgstr ""
+"Oma merkintä poistettu %(votes)s:n tai useamman positiivisen äänen jälkeen"
#: models/badges.py:133
msgid "Disciplined"
@@ -3207,7 +3566,8 @@ msgstr "Kurinalainen"
#: models/badges.py:151
#, python-format
msgid "Deleted own post with %(votes)s or more downvotes"
-msgstr "Oma merkintä poistettu %(votes)s:n tai useamman negatiivisen äänen jälkeen"
+msgstr ""
+"Oma merkintä poistettu %(votes)s:n tai useamman negatiivisen äänen jälkeen"
#: models/badges.py:155
msgid "Peer Pressure"
@@ -3250,7 +3610,9 @@ msgstr "Äänestetty %(num)s kertaa"
#: models/badges.py:252
#, python-format
msgid "Answered own question with at least %(num)s up votes"
-msgstr "Vastannut omaan kysymykseensä, joka on saanut vähintään %(num)s positiivista ääntä"
+msgstr ""
+"Vastannut omaan kysymykseensä, joka on saanut vähintään %(num)s positiivista "
+"ääntä"
#: models/badges.py:256
msgid "Self-Learner"
@@ -3296,7 +3658,8 @@ msgstr "Opiskelija"
#: models/badges.py:381
msgid "Asked first question with at least one up vote"
-msgstr "Kysyi ensimmäisen kysymyksen joka sai vähintään yhden positiivisen äänen"
+msgstr ""
+"Kysyi ensimmäisen kysymyksen joka sai vähintään yhden positiivisen äänen"
#: models/badges.py:414
msgid "Popular Question"
@@ -3346,7 +3709,9 @@ msgstr "Vastaus hyväksyttiin %(num)s:lla tai useammalla äänellä"
msgid ""
"Answered a question more than %(days)s days later with at least %(votes)s "
"votes"
-msgstr "Vastannut kysymykseen yli %(days)s päivää myöhemmin ja saanut vähintään %(votes)s ääntä"
+msgstr ""
+"Vastannut kysymykseen yli %(days)s päivää myöhemmin ja saanut vähintään "
+"%(votes)s ääntä"
#: models/badges.py:525
msgid "Necromancer"
@@ -3457,59 +3822,74 @@ msgstr "Erityisasiantuntija"
msgid "Very active in one tag"
msgstr "Aktiivinen yhden tagin alla"
-#: models/post.py:1056
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "Valitettavasti tämä kysymys on poistettu, eikä ole enää saatavilla"
-#: models/post.py:1072
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
-msgstr "Valitettavasti etsimäsi vastaus ei ole enää saatavilla, sillä sitä edeltävä kysymys on poistettu"
+msgstr ""
+"Valitettavasti etsimäsi vastaus ei ole enää saatavilla, sillä sitä edeltävä "
+"kysymys on poistettu"
-#: models/post.py:1079
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "Valitettavasti tämä vastaus on poistettu eikä ole enää saatavilla"
-#: models/post.py:1095
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
-msgstr "Valitettavasti etsimäsi kommentti ei ole enää saatavilla, sillä alkuperäinen kysymys on poistettu"
+msgstr ""
+"Valitettavasti etsimäsi kommentti ei ole enää saatavilla, sillä alkuperäinen "
+"kysymys on poistettu"
-#: models/post.py:1102
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
-msgstr "Valitettavasti etsimäsi kommentti ei ole enää saatavilla, sillä alkuperäinen vastaus on poistettu"
+msgstr ""
+"Valitettavasti etsimäsi kommentti ei ole enää saatavilla, sillä alkuperäinen "
+"vastaus on poistettu"
-#: models/question.py:51
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" ja \"%s\""
-#: models/question.py:54
+#: models/question.py:57
msgid "\" and more"
msgstr "\" ja enemmän"
-#: models/repute.py:141
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Tarkistuta sähköpostiosoite"
+
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Moderaattorin vaihtama. Syy:</em> %(reason)s"
-#: models/repute.py:152
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
-msgstr "%(points)s pistettä lisätty käyttäjän %(username)s panoksesta kysymykseen %(question_title)s"
+msgstr ""
+"%(points)s pistettä lisätty käyttäjän %(username)s panoksesta kysymykseen "
+"%(question_title)s"
-#: models/repute.py:157
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
-msgstr "%(points)s pistettä vähennetty käyttäjän %(username)s panoksesta kysymykseen %(question_title)s"
+msgstr ""
+"%(points)s pistettä vähennetty käyttäjän %(username)s panoksesta kysymykseen "
+"%(question_title)s"
#: models/tag.py:106
msgid "interesting"
@@ -3555,23 +3935,25 @@ msgstr "Viikottain"
msgid "No email"
msgstr "Ei sähköpostia"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Kirjoita <span>käyttäjänimesi</span>, ja kirjaudu sitten sisään"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr "(tai valitse toinen sisäänkirjautumistapa yllä olevista)"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr "Kirjaudu sisään"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Vaihda sähköpostiosoitettasi"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3580,27 +3962,38 @@ msgstr "Tallenna sähköpostiosoitteesi"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
-msgstr "<span class=\"strong big\">Kirjoita alla olevaan kenttään uusi sähköpostiosoitteesi</span> jos haluat käyttää muuta sähköpostiosoitetta <strong>päivitystilauksille</strong>.<br>Tämänhetkinen sähköpostisi on <strong>%(email)s</strong>"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr "<span class='strong big'>Kirjoita sähköpostiosoitteesi alla olevaan kenttään.</span> Tällä Q&A-foorumilla vaaditaan voimassa oleva sähköpostiosoite. Halutessasi voit <strong>vastaanottaa päivityksiä</strong> mielenkiintoisista kysymyksistä tai koko foorumista sähköpostitse. Sähköpostiasi käytetään myös henkilökohtaisen <a href='%(gravatar_faq_url)s'><strong>gravatar-kuvakkeen</strong></a> luomiseksi tilillesi. Sähköpostiosoitteita ei koskaan näytetä tai jaeta muille käyttäjille."
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
-msgstr "<strong>Uusi sähköpostiosoitteesi:</strong> (<strong>ei</strong> näytetä muille käyttäjille, oltava voimassa)"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
-msgstr "<strong>Sähköpostiosoitteesi:</strong> (<strong>ei</strong> näytetä muille käyttäjille, oltava voimassa)"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "Tallenna sähköpostiosoite"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3608,112 +4001,112 @@ msgstr "Tallenna sähköpostiosoite"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:103
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Peruuta"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "Tarkistuta sähköpostiosoite"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
-msgstr "<span class=\"strong big\">Vahvistuslinkki on lähetetty sähköpostitse osoitteeseen %(email)s.</span> <strong>Klikkaa sähköpostistasi löytyvää linkkiä</strong> selaimessasi. Sähköpostin vahvistus on tarpeellista, jotta voimme varmistaa sähköpostin oikean käytön <span class=\"orange\">Q&A-foorumilla</span>. Jos haluat käyttää <strong>toista sähköpostiosoitetta</strong>, <a href='%(change_email_url)s'><strong>vaihda uudelleen</strong></a>."
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "Sähköpostia ei vaihdettu"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
-msgstr "<span class=\"strong big\">Sähköpostiosoitettasi %(email)s ei vaihdettu.</span> Voit halutessasi vaihtaa sen myöhemmin koska tahansa muokkaamalla sitä käyttäjäprofiilissasi tai käyttämällä <a href='%(change_email_url)s'><strong>edellistä lomaketta</strong></a> uudelleen."
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "Sähköposti muutettu"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
-msgstr "<span class='big strong'>Sähköpostiosoitteesi on nyt %(email)s. </span> Päivitykset kysymyksistä, joista pidät eniten, lähetetään tähän osoitteeseen. Sähköpostipäivitykset lähetetään kerran päivässä tai harvemmin, vain jos uutisia on."
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "Sähköpostiosoite hyväksytty"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
-msgstr "<span class=\"big strong\">Kiitos sähköpostiosoitteesi vahvistamisesta!</span> Nyt voit <strong>kysyä</strong> ja <strong>vastata kysymyksiin</strong>. Jos löydät mielenkiintoisen kysymyksen, voit nyt myös <strong>tilata päivityksiä</strong> - näin saat päivityksen keskustelusta <strong>kerran päivässä</strong> tai harvemmin.."
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "Vahvistussähköpostia ei lähetetty"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Tarkistuta sähköpostiosoite"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
-msgstr "<span class='big strong'>Nykyinen sähköpostiosoitteesi %(email)s on jo vahvistettu</span> eikä uutta koodia lähetetty. Voit <a href='%(change_link)s'>vaihtaa</a> käyttämääsi sähköpostiosoitetta jos haluat."
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
+msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
msgid "Registration"
msgstr "Rekisteröinti"
-#: skins/common/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\">Olet kirjautunut sisään ensimmäistä kertaa käyttäen %(provider)s-palvelua.</span> Luo <strong>käyttätunnuksesi</strong> ja tallenna <strong>sähköpostiosoitteesi</strong>. Tallennetulla sähköpostiosoitteella voit <strong>tilata päivityksiä</strong> mielenkiintoisimmista kysymyksistä ja sitä käytetään oman avatar-kuvakkeesi luomiseen ja palauttamiseen - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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'>Hups... käyttäjätunnus %(username)s näyttää jo olevan toisen tilin käytössä.</span></p><p>Valitse toinen käyttäjätunnus käytettäväksi %(provider)s-palvelun kautta sisäänkirjauduttuessa. Tarvitset myös voimassa olevan sähköpostiosoitteen <span class='orange'>Q&A-foorumilla</span>. Sähköpostiasi käytetään oman avatar-kuvakkeesi luomiseen ja palauttamiseen - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>. Halutessasi voit myös <strong>tilata päivityksiä</strong> sähköpostiisi mielenkiintoisimmista kysymyksistä foorumilla. Sähköpostiosoitteita ei ikinä näytetä tai jaeta muiden käyttäjien kanssa.</p>"
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr "<p><span class=\"big strong\">Olet kirjautunut sisään ensimmäistä kertaa käyttäen %(provider)s-palvelua.</span></p><p>Voit joko pitää <strong>käyttäjätunnuksesi</strong> samana kuin %(provider)s-sisäänkirjautumisnimesi tai valita jonkun muun nimimerkin.</p><p> Tallennathan myös voimassa olevan <strong>sähköpostiosoitteen</strong>. With the email you can <strong>subscribe for the updates</strong> on the most interesting questions. Tallennetulla sähköpostiosoitteella voit <strong>tilata päivityksiä</strong> mielenkiintoisimmista kysymyksistä ja sitä käytetään oman avatar-kuvakkeesi luomiseen ja palauttamiseen - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr "<p><span class=\"big strong\">Olet kirjautunut sisään ensimmäistä kertaa käyttäen Facebookin sisäänkirjautumispalvelua.</span> Luo <strong>käyttätunnuksesi</strong> ja tallenna <strong>sähköpostiosoitteesi</strong>. Tallennetulla sähköpostiosoitteella voit <strong>tilata päivityksiä</strong> mielenkiintoisimmista kysymyksistä ja sitä käytetään oman avatar-kuvakkeesi luomiseen ja palauttamiseen - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr "Tällä käyttäjänimellä on jo tili, ole hyvä ja käytä toista."
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "<strong>Käyttäjätunnus</strong> (<i>näytetään muille</i>)"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr "Sähköpostiosoite"
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "Rekisteröinti"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
-msgstr "<strong>Vastaanota foorumipäivityksiä sähköpostitse</strong> - näin autat yhteisöämme kasvamaan ja tulemaan hyödyllisemmäksi.<br/><span class='orange'>Q&A-foorumi</span> lähettää vakiona enintään <strong>yhden päivityssähköpostin viikossa</strong> - Vain, jos uutisia on.<br/>Voit halutessasi muuttaa tätä asetusta nyt tai koska tahansa myöhemmin käyttäjätililtäsi."
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "valitse yksi vaihtoehto"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr "Tagisuodatin-työkalu ilmestyy oikeanpuoleiseen palkkiin, kun olet kirjautunut sisään."
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "Luo tunnus"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "Sisäänkirjautuminen"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -3737,9 +4130,10 @@ msgstr "Kirjaudu sisään täällä:"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr "Terveisin Q&A-foorumin ylläpito"
#: skins/common/templates/authopenid/email_validation.txt:1
@@ -3752,14 +4146,20 @@ msgstr "Käyttääksesi tätä foorumia, klikkaa seuraavaa linkkiä:"
#: skins/common/templates/authopenid/email_validation.txt:7
msgid "Following the link above will help us verify your email address."
-msgstr "Yllä olevan linkin klikkaaminen auttaa meitä vahvistamaan sähköpostiosoitteesi"
+msgstr ""
+"Yllä olevan linkin klikkaaminen auttaa meitä vahvistamaan "
+"sähköpostiosoitteesi"
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
-msgstr "Jos luulet, että tämä viesti lähetettiin sinulle vahingossa\nlisätoimintoja ei vaadita. Jätä tämä sähköposti huomiotta, pyydämme anteeksi⏎\naiheuttamaamme häiriötä"
+msgstr ""
+"Jos luulet, että tämä viesti lähetettiin sinulle vahingossa\n"
+"lisätoimintoja ei vaadita. Jätä tämä sähköposti huomiotta, pyydämme anteeksi "
+"aiheuttamaamme häiriötä"
#: skins/common/templates/authopenid/logout.html:3
msgid "Logout"
@@ -3773,7 +4173,9 @@ msgstr "Uloskirjautuminen onnistui"
msgid ""
"However, you still may be logged in to your OpenID provider. Please logout "
"of your provider if you wish to do so."
-msgstr "Saatat edelleen olla kirjautunut sisään OpenID-palveluun. Kirjaudu ulos palvelusta, jos haluat."
+msgstr ""
+"Saatat edelleen olla kirjautunut sisään OpenID-palveluun. Kirjaudu ulos "
+"palvelusta, jos haluat."
#: skins/common/templates/authopenid/signin.html:4
msgid "User login"
@@ -3785,7 +4187,12 @@ msgid ""
"\n"
" Your answer to %(title)s %(summary)s will be posted once you log in\n"
" "
-msgstr "\n\n<span class=\"strong big\">Vastauksesi kysymykseen</span> <i>\"<strong>%(title)s</strong> %(summary)s...\"</i> <span class=\"strong big\">on tallennettu ja julkaistaan, kun kirjaudut sisään.</span>"
+msgstr ""
+"\n"
+"\n"
+"<span class=\"strong big\">Vastauksesi kysymykseen</span> <i>\"<strong>"
+"%(title)s</strong> %(summary)s...\"</i> <span class=\"strong big\">on "
+"tallennettu ja julkaistaan, kun kirjaudut sisään.</span>"
#: skins/common/templates/authopenid/signin.html:21
#, python-format
@@ -3793,160 +4200,154 @@ msgid ""
"Your question \n"
" %(title)s %(summary)s will be posted once you log in\n"
" "
-msgstr "<span class=\"strong big\">Kysymyksesi</span> <i>\"<strong>%(title)s</strong> %(summary)s...\"</i> <span class=\"strong big\">on tallennettu ja julkaistaan, kun kirjaudut sisään.</span>"
+msgstr ""
+"<span class=\"strong big\">Kysymyksesi</span> <i>\"<strong>%(title)s</"
+"strong> %(summary)s...\"</i> <span class=\"strong big\">on tallennettu ja "
+"julkaistaan, kun kirjaudut sisään.</span>"
#: skins/common/templates/authopenid/signin.html:28
+#, fuzzy
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or"
-" similar technology. Your external service password always stays "
-"confidential and you don't have to rememeber or create another one."
-msgstr "Valitse alla olevista parhaaksi valitsemasi turvallista OpenID-menetelmää tai vastaavaa käyttävä sisäänkirjautumispalvelu. Salasanasi tässä ulkoisessa palvelussa pidetään aina salassa eikä sinun tarvitse muistaa tai luoda toista."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
+msgstr ""
+"Valitse alla olevista parhaaksi valitsemasi turvallista OpenID-menetelmää "
+"tai vastaavaa käyttävä sisäänkirjautumispalvelu. Salasanasi tässä ulkoisessa "
+"palvelussa pidetään aina salassa eikä sinun tarvitse muistaa tai luoda "
+"toista."
#: skins/common/templates/authopenid/signin.html:31
msgid ""
"It's a good idea to make sure that your existing login methods still work, "
-"or add a new one. Please click any of the icons below to check/change or add"
-" new login methods."
-msgstr "Kannattaa varmistaa, että tämänhetkinen kirjautumistapasi toimii edelleen, tai lisätä uusi. Klikkaa jotakin alla olevista kuvakkeista tarkistaaksesi/vaihtaaksesi tai lisätäksesi uusia sisäänkirjautumistapoja."
+"or add a new one. Please click any of the icons below to check/change or add "
+"new login methods."
+msgstr ""
+"Kannattaa varmistaa, että tämänhetkinen kirjautumistapasi toimii edelleen, "
+"tai lisätä uusi. Klikkaa jotakin alla olevista kuvakkeista tarkistaaksesi/"
+"vaihtaaksesi tai lisätäksesi uusia sisäänkirjautumistapoja."
#: skins/common/templates/authopenid/signin.html:33
msgid ""
-"Please add a more permanent login method by clicking one of the icons below,"
-" to avoid logging in via email each time."
-msgstr "Lisää pysyvämpi sisäänkirjautumistapa klikkaamalla jotakin alla olevista kuvakkeista. Näin sinun ei tarvitse aina kirjautua sisään sähköpostitse."
+"Please add a more permanent login method by clicking one of the icons below, "
+"to avoid logging in via email each time."
+msgstr ""
+"Lisää pysyvämpi sisäänkirjautumistapa klikkaamalla jotakin alla olevista "
+"kuvakkeista. Näin sinun ei tarvitse aina kirjautua sisään sähköpostitse."
#: skins/common/templates/authopenid/signin.html:37
msgid ""
"Click on one of the icons below to add a new login method or re-validate an "
"existing one."
-msgstr "Klikkaa jotakin alla olevista kuvakkeista lisätäksesi uuden sisäänkirjautumistavan tai uudelleenvahvistaaksesi tämänhetkisen."
+msgstr ""
+"Klikkaa jotakin alla olevista kuvakkeista lisätäksesi uuden "
+"sisäänkirjautumistavan tai uudelleenvahvistaaksesi tämänhetkisen."
#: skins/common/templates/authopenid/signin.html:39
msgid ""
"You don't have a method to log in right now, please add one or more by "
"clicking any of the icons below."
-msgstr "Sinulla ei tällä hetkellä ole tapaa kirjautua sisään, ole hyvä, ja lisää yksi tai useampi sisäänkirjautumistapa klikkaamalla mitä tahansa alla olevista kuvakkeista"
+msgstr ""
+"Sinulla ei tällä hetkellä ole tapaa kirjautua sisään, ole hyvä, ja lisää "
+"yksi tai useampi sisäänkirjautumistapa klikkaamalla mitä tahansa alla "
+"olevista kuvakkeista"
#: skins/common/templates/authopenid/signin.html:42
msgid ""
"Please check your email and visit the enclosed link to re-connect to your "
"account"
-msgstr "Tarkasta sähköpostisi ja klikkaa liittenä olevaa linkkiä yhdistääksesi takaisin tiliisi"
+msgstr ""
+"Tarkasta sähköpostisi ja klikkaa liittenä olevaa linkkiä yhdistääksesi "
+"takaisin tiliisi"
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
-msgstr "Kirjoita tähän <span>käyttäjänimesi ja salasanasi</span>, ja kirjaudu sitten sisään"
+#: skins/common/templates/authopenid/signin.html:89
+#, fuzzy
+msgid "or enter your <span>user name and password</span>, then sign in"
+msgstr ""
+"Kirjoita tähän <span>käyttäjänimesi ja salasanasi</span>, ja kirjaudu sitten "
+"sisään"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Kirjaudu sisään täällä:"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr "SIsäänkirjautuminen epäonnistui, yritä uudelleen"
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr "Sisäänkirjautuminen tai sähköposti"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Salasana"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Kirjaudu sisään"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
-msgstr "Vaihtaaksesi salasanaasi kirjoita uusi salasanasi kahdesti ja klikkaa sitten 'lähetä'"
+msgstr ""
+"Vaihtaaksesi salasanaasi kirjoita uusi salasanasi kahdesti ja klikkaa sitten "
+"'lähetä'"
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr "Uusi salasana"
-#: skins/common/templates/authopenid/signin.html:126
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr "Kirjoita uudelleen"
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr "Tässä ovat tämänhetkiset sisäänkirjautumistapasi"
-#: skins/common/templates/authopenid/signin.html:154
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr "palveluntarjoaja"
-#: skins/common/templates/authopenid/signin.html:155
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr "viimeksi käytetty"
-#: skins/common/templates/authopenid/signin.html:156
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr "halutessasi poista"
-#: skins/common/templates/authopenid/signin.html:170
-#: skins/common/templates/question/answer_controls.html:34
-#: skins/common/templates/question/question_controls.html:38
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "poista"
-#: skins/common/templates/authopenid/signin.html:172
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr "ei voida poistaa"
-#: skins/common/templates/authopenid/signin.html:185
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr "Ongelmia sisäänkirjautumisessa?"
-#: skins/common/templates/authopenid/signin.html:190
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr "Kirjoita sähköpostiosoitteesi alle saadaksesi uuden koodin"
-#: skins/common/templates/authopenid/signin.html:192
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr "Kirjoita sähköpostiosoitteesi alle elvyttääksesi tilisi"
-#: skins/common/templates/authopenid/signin.html:195
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr "elvytä tilisi sähköpostin kautta"
-#: skins/common/templates/authopenid/signin.html:206
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr "Lähetä uusi elvytyskoodi"
-#: skins/common/templates/authopenid/signin.html:208
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr "Elvytä tilisi sähköpostin kautta"
-#: skins/common/templates/authopenid/signin.html:220
-msgid "Why use OpenID?"
-msgstr "Miksi käyttää OpenID:tä?"
-
-#: skins/common/templates/authopenid/signin.html:223
-msgid "with openid it is easier"
-msgstr "OpenID:n avulla sinun ei tarvitse luoda uutta käyttäjätunnusta ja salasanaa."
-
-#: skins/common/templates/authopenid/signin.html:226
-msgid "reuse openid"
-msgstr "Voit turvallisesti käyttää samaoja kirjautumistietoja kaikilla OpenID:tä tukevilla nettipalveluissa."
-
-#: skins/common/templates/authopenid/signin.html:229
-msgid "openid is widely adopted"
-msgstr "Maailmanlaajuisesti OpenID:tä käyttää jo yli 160 miljoonaa ihmistä ja yli 10.000 sivustoa."
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "openid is supported open standard"
-msgstr "OpenID on avoin standardi, jota käyttää moni yritys ja organisaatio."
-
-#: skins/common/templates/authopenid/signin.html:236
-msgid "Find out more"
-msgstr "Lisätietoja"
-
-#: skins/common/templates/authopenid/signin.html:237
-msgid "Get OpenID"
-msgstr "Hanki OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "Sisäänkirjautuminen"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
msgstr "Rekisteröidy klikkaamalla jotakin alla olevista kuvakkeista"
@@ -3960,24 +4361,31 @@ msgid "Create login name and password"
msgstr "Luo käyttäjätunnus ja salasana"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
-msgstr "<span class='strong big'>Halutessasi voit luoda foorumi-tunnuksesi ja salasanasi täällä. </span>Muista kuitenkin, että tuemme myös <strong>OpenID-sisäänkirjautumista</strong>. <strong>OpenID:llä</strong> voit käyttää ulkopuolista sisäänkirjautumistasi uudelleen (esim. Gmail tai AOL) ikinä jakamatta kirjautumistietojasi kenenkään kanssa ja muistamatta uutta salasanaa."
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
-msgstr "Lue ja kirjoita kaksi alla näkyvää sanaa auttaaksesi meitä estämään automaattisten tilien luomista."
-
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Luo tunnus"
+msgstr ""
+"Lue ja kirjoita kaksi alla näkyvää sanaa auttaaksesi meitä estämään "
+"automaattisten tilien luomista."
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "tai"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "palaa OpenID-palvelun kirjautumiseen"
@@ -4026,74 +4434,87 @@ msgstr "Valitse avatarit, jotka haluat poistaa"
#: skins/common/templates/avatar/confirm_delete.html:6
#, python-format
msgid ""
-"You have no avatars to delete. Please <a "
-"href=\"%(avatar_change_url)s\">upload one</a> now."
-msgstr "Sinulla ei ole poistettavia avatareja. Ole hyvä ja <a href=\"%(avatar_change_url)s\">lisää avatar</a> nyt."
+"You have no avatars to delete. Please <a href=\"%(avatar_change_url)s"
+"\">upload one</a> now."
+msgstr ""
+"Sinulla ei ole poistettavia avatareja. Ole hyvä ja <a href="
+"\"%(avatar_change_url)s\">lisää avatar</a> nyt."
#: skins/common/templates/avatar/confirm_delete.html:12
msgid "Delete These"
msgstr "Poista Nämä"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "pysyväislinkki"
+#: skins/common/templates/question/answer_controls.html:2
+msgid "swap with question"
+msgstr "vaihda paikkaa kysymyksen kanssa"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "linkki"
-#: skins/common/templates/question/answer_controls.html:11
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:313
-#: skins/default/templates/revisions.html:38
-#: skins/default/templates/revisions.html:41
-msgid "edit"
-msgstr "muokkaa"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "linkki"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:22
-#: skins/common/templates/question/question_controls.html:30
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "palauta"
+
+#: skins/common/templates/question/answer_controls.html:19
+#, fuzzy
+msgid "remove offensive flag"
+msgstr "Näytä loukkaavaksi liputetut merkinnät"
+
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+msgid "remove flag"
+msgstr "poista liputus"
+
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
-msgstr "merkkaa loukkaavaksi (sisältää esim. roskapostia, mainostusta tai loukkaavaa tekstiä)"
+msgstr ""
+"merkkaa loukkaavaksi (sisältää esim. roskapostia, mainostusta tai loukkaavaa "
+"tekstiä)"
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "liputa loukkaavaksi"
-#: skins/common/templates/question/answer_controls.html:24
-#: skins/common/templates/question/question_controls.html:31
-msgid "remove flag"
-msgstr "poista liputus"
-
-#: skins/common/templates/question/answer_controls.html:34
-#: skins/common/templates/question/question_controls.html:38
-msgid "undelete"
-msgstr "palauta"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "muokkaa"
-#: skins/common/templates/question/answer_controls.html:40
-msgid "swap with question"
-msgstr "vaihda paikkaa kysymyksen kanssa"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "tämä vastaus on valittu oikeaksi"
-#: skins/common/templates/question/answer_vote_buttons.html:9
-#: skins/common/templates/question/answer_vote_buttons.html:10
+#: skins/common/templates/question/answer_vote_buttons.html:8
msgid "mark this answer as correct (click again to undo)"
msgstr "merkkaa tämä vastaus oikeaksi (klikkaa uudelleen peruaksesi)"
-#: skins/common/templates/question/answer_vote_buttons.html:12
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "%(question_author)s on valinnut tämän kysymyksen oikeaksi"
-
#: skins/common/templates/question/closed_question_info.html:2
#, python-format
msgid ""
-"The question has been closed for the following reason "
-"<b>\"%(close_reason)s\"</b> <i>by"
-msgstr "Kysymys on suljettu seuraavasta syystä: <b>\"%(close_reason)s\"</b> <i>by"
+"The question has been closed for the following reason <b>\"%(close_reason)s"
+"\"</b> <i>by"
+msgstr ""
+"Kysymys on suljettu seuraavasta syystä: <b>\"%(close_reason)s\"</b> <i>by"
#: skins/common/templates/question/closed_question_info.html:4
#, python-format
@@ -4101,44 +4522,52 @@ msgid "close date %(closed_at)s"
msgstr "sulkemispäivä %(closed_at)s"
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr "tagää uudelleen"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "avaa uudelleen"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "sulje"
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr "tagää uudelleen"
+
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
msgstr "yksi näistä vaaditaan"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "tagit"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(pakollinen)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Reaaliaikainen Markdown-muokkain päälle/pois"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:84
-#: skins/default/templates/question/javascript.html:87
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "piilota esikatselu"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Tagit"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
@@ -4182,7 +4611,9 @@ msgstr "URL-osoitteessa on virhe;"
msgid ""
"the page you tried to visit is protected or you don't have sufficient "
"points, see"
-msgstr "sivu jota yritit käyttää on suojattu tai sinulla ei ole tarpeeksi ääniä, katso"
+msgstr ""
+"sivu jota yritit käyttää on suojattu tai sinulla ei ole tarpeeksi ääniä, "
+"katso"
#: skins/default/templates/404.jinja.html:19
#: skins/default/templates/widgets/footer.html:39
@@ -4218,7 +4649,8 @@ msgstr "Sisäinen palvelinvirhe"
#: skins/default/templates/500.jinja.html:8
msgid "system error log is recorded, error will be fixed as soon as possible"
-msgstr "järjestelmävirhe on lisätty logeihimme, virhe korjataan mahdollisimman pian"
+msgstr ""
+"järjestelmävirhe on lisätty logeihimme, virhe korjataan mahdollisimman pian"
#: skins/default/templates/500.jinja.html:9
msgid "please report the error to the site administrators if you wish"
@@ -4261,12 +4693,15 @@ msgstr "Tallenna muokkaus"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:87
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "näytä esikatselu"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
msgstr "Esitä kysymys"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
@@ -4298,11 +4733,7 @@ msgid_plural "users received this badge:"
msgstr[0] "käyttäjä sai tämän mitalin:"
msgstr[1] "käyttäjää sai tämän mitalin:"
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Mitalit"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "Mitalit"
@@ -4311,41 +4742,48 @@ msgid "Community gives you awards for your questions, answers and votes."
msgstr "Yhteisö palkitsee sinut kysymyksistäsi, vastauksistasi ja äänistäsi."
#: skins/default/templates/badges.html:8
-#, python-format
+#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at %(feedback_faq_url)s.\n"
-msgstr "Alla on lista saatavilla olevista mitaleista ja siitä, kuinka monta kertaa\nkukin on myönnetty. Jos sinulla on hauskoja ideoita mitalien suhteen, jätä meille <a href='%(feedback_faq_url)s'>palautetta</a>⏎\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
+msgstr ""
+"Alla on lista saatavilla olevista mitaleista ja siitä, kuinka monta kertaa\n"
+"kukin on myönnetty. Jos sinulla on hauskoja ideoita mitalien suhteen, jätä "
+"meille <a href='%(feedback_faq_url)s'>palautetta</a>\n"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Mitalitasot"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr "kultamitali: korkein kunnia, erittäin harvinainen"
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr "Kultamitali on tämän yhteisön korkein palkinto. Saadaksesi kultamitalin, sinun on aktiivisen osallistumisesi lisäksi osoitettava merkittävää tietämystä ja kykyjä."
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr "hopeamitali: myönnetään erittäin korkealaatuisesta panoksesta"
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+#, fuzzy
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr "hopeamitali: myönnetään erittäin korkealaatuisesta panoksesta"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "pronssimitali: annetaan usein erikoiskunniana"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "pronssimitali: annetaan usein erikoiskunniana"
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Sulje kysymys"
@@ -4381,23 +4819,31 @@ msgstr "Minkälaisia kysymyksiä voin kysyä täällä?"
msgid ""
"Most importanly - questions should be <strong>relevant</strong> to this "
"community."
-msgstr "Kaikista tärkeintä on, että kysymyksesi liittyy läheisesti <strong>tämän sivuston aihepiiriin</strong>."
+msgstr ""
+"Kaikista tärkeintä on, että kysymyksesi liittyy läheisesti <strong>tämän "
+"sivuston aihepiiriin</strong>."
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
-msgstr "Ennen kuin kysyt, käytä hakua avuksesi, sillä joku on voinut jo vastata kysymykseesi."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
+msgstr ""
+"Ennen kuin kysyt, käytä hakua avuksesi, sillä joku on voinut jo vastata "
+"kysymykseesi."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "Minkälaisia kysymyksiä minun pitäisi välttää?"
#: skins/default/templates/faq_static.html:11
msgid ""
"Please avoid asking questions that are not relevant to this community, too "
"subjective and argumentative."
-msgstr "Yritä välttää kysymyksiä, jotka eivät liity tähän sivustoon, ovat liian subjektiivisia ja väittelyä hakevia."
+msgstr ""
+"Yritä välttää kysymyksiä, jotka eivät liity tähän sivustoon, ovat liian "
+"subjektiivisia ja väittelyä hakevia."
#: skins/default/templates/faq_static.html:13
msgid "What should I avoid in my answers?"
@@ -4405,10 +4851,11 @@ msgstr "Mitä minun pitäisi välttää vastauksissani?"
#: skins/default/templates/faq_static.html:14
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 "on <strong>kysymys ja vastaus</strong> -sivusto - <strong> ei keskustelupalsta tai -ryhmä</strong>. Vältä kysymyksiä, jotka yrittävät nostaa pintaan väittelyä. Käytä kommentteja pieniin lisäkysymyksiin tai vastauksiin."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
+msgstr ""
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4423,122 +4870,158 @@ msgid "This website is moderated by the users."
msgstr "Tätä sivua hallinnoivat käyttäjät itse."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
-msgstr "Mainepistejärjestelmä antaa käyttäjille mahdollisuuden ansaita oikeuksia erilaisiin moderointitehtäviin"
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
+msgstr ""
+"Mainepistejärjestelmä antaa käyttäjille mahdollisuuden ansaita oikeuksia "
+"erilaisiin moderointitehtäviin"
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "Miten mainepistejärjestelmä toimii?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr "Kun kysymystä tai vastausta äänestetään ylöspäin, ansaitsee kysyjä tai vastaaja pisteitä, joita kutsutaan \"mainepisteiksi\". Nämä pisteet kuvaavat karkealla tasolla yhteisön luottamusta. Mainepisteiden perusteella voidaan käyttäjille myöntää asteittain erilaisia moderointitehtäviä."
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, 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 "Esimerkiksi, jos kysyt mielenkiintoisen kysymyksen tai annat hyödyllisen vastauksen, panoksesi saa positiivisia ääniä. Jos vastauksesi taas on harhaan johtava, se saa negatiivisia ääniä. Ansaitset <strong>%(REP_GAIN_FOR_RECEIVING_UPVOTE)s</strong> pistettä jokaisesta saamastasi positiivisesta äänestä, ja jokainen negatiivinen ääni vähentää <strong>%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s</strong> pistettä. Pisteiden kerääntymisen enimmäismäärä on <strong>%(MAX_REP_GAIN_PER_USER_PER_DAY)s</strong> pistettä päivässä per kysymys tai vastaus. Alla olevasta taulukosta selviää, kuinka paljon mainepisteitä tarvitset ollaksesi oikeutettu mihinkin ylläpitotehtävään."
+"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 ""
+"Esimerkiksi, jos kysyt mielenkiintoisen kysymyksen tai annat hyödyllisen "
+"vastauksen, panoksesi saa positiivisia ääniä. Jos vastauksesi taas on "
+"harhaan johtava, se saa negatiivisia ääniä. Ansaitset <strong>"
+"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s</strong> pistettä jokaisesta saamastasi "
+"positiivisesta äänestä, ja jokainen negatiivinen ääni vähentää <strong>"
+"%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s</strong> pistettä. Pisteiden "
+"kerääntymisen enimmäismäärä on <strong>%(MAX_REP_GAIN_PER_USER_PER_DAY)s</"
+"strong> pistettä päivässä per kysymys tai vastaus. Alla olevasta taulukosta "
+"selviää, kuinka paljon mainepisteitä tarvitset ollaksesi oikeutettu mihinkin "
+"ylläpitotehtävään."
#: skins/default/templates/faq_static.html:32
#: skins/default/templates/user_profile/user_votes.html:13
msgid "upvote"
msgstr "lisaa-aani"
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "lisää kommentteja"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "poista-aani"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
msgid " accept own answer to own questions"
msgstr "hyväksy oma vastauksesi omaan kysymykseesi"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "avaa ja sulje omia kysymyksiä"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr "tagää muiden kysymyksiä uudelleen"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "muokkaa yhteisöwikin kysymyksiä"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
msgid "edit any answer"
msgstr "muokkaa vastauksia"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
msgid "delete any comment"
msgstr "poista kommentteja"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "Miten vaihdan profiilissani olevan kuvan (gravatar)?"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
-msgstr "<p>Käyttäjän profiilissa näkyvä kuva on nimeltään <strong>gravatar</strong> (<strong>g</strong>lobally <strong>r</strong>ecognized <strong>avatar</strong>).</p><p>Se toimii näin: <strong>kryptografinen koodi</strong> luodaan käyttäen sähköpostiosoitettasi. Lataat kuvasi (tai haluamasi alter ego -kuvan) sivulle <a href='http://gravatar.com'><strong>gravatar.com</strong></a>, josta myöhemmin haemme kuvasi käyttäen koodia.</p><p>Näin kaikki luottamasi nettisivut voivat näyttää kuvasi merkintöjesi vieressä ja sähköpostiosoitteesi pysyy yksityisenä.</p><p><strong>Tee tilistäsi persoonallinen</strong> kuvan avulla - rekisteröidy osoitteessa <a href='http://gravatar.com'><strong>gravatar.com</strong></a> (varmista, että käytät samaa sähköpostiosoitetta, jota käytit rekisteröityessäsi tänne). Vakiokuvake, joka näyttää keittiölaatalta, luodaan automaattisesti.</p>"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Tarvitseeko minun luoda erillinen tunnus jotta voin rekisteröityä?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
-msgstr "Ei, sinun ei ole pakko. Voit kirjautua sisään minkä tahansa OpenID:tä tukevan palvelun kautta (esim. Google, Yahoo, AOL).\""
+msgstr ""
+"Ei, sinun ei ole pakko. Voit kirjautua sisään minkä tahansa OpenID:tä "
+"tukevan palvelun kautta (esim. Google, Yahoo, AOL).\""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr "\"Kirjaudu sisään nyt!\""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "Miksi muut voivat muokata kysymyksiäni tai vastauksiani?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr "Tämän sivuston tavoite on..."
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "Kokeneet käyttäjät voivat muokata vastauksia ja kysymyksiä kuten wikiä. Tämä nostaa sivuston laatua."
+msgstr ""
+"Kokeneet käyttäjät voivat muokata vastauksia ja kysymyksiä kuten wikiä. Tämä "
+"nostaa sivuston laatua."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr "Jos et pidä tästä, kunnioitamme valintaasi."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "Vieläkin kysymyksiä?"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
-msgstr "<a href='%(ask_question_url)s'>Esitä kysymyksesi</a> ja teet yhteisöstämme entistäkin paremman!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
+msgstr ""
+"<a href='%(ask_question_url)s'>Esitä kysymyksesi</a> ja teet yhteisöstämme "
+"entistäkin paremman!"
#: skins/default/templates/feedback.html:3
msgid "Feedback"
@@ -4552,22 +5035,33 @@ msgstr "Anna meille palautetta!"
#, python-format
msgid ""
"\n"
-" <span class='big strong'>Dear %(user_name)s</span>, we look forward to hearing your feedback. \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 "\n<span class='big strong'>Hyvä %(user_name)s</span>, otamme mielellään vastaan palautetta sinulta. Kirjoita viestisi ja lähetä se käyttämällä alla olevaa lomaketta."
+msgstr ""
+"\n"
+"<span class='big strong'>Hyvä %(user_name)s</span>, otamme mielellään "
+"vastaan palautetta sinulta. Kirjoita viestisi ja lähetä se käyttämällä alla "
+"olevaa lomaketta."
#: skins/default/templates/feedback.html:21
msgid ""
"\n"
-" <span class='big strong'>Dear visitor</span>, we look forward to hearing your feedback.\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 "\n<span class='big strong'>Hyvä vierailija</span>, otamme mielellään vastaan palautetta. Kirjoita viestisi ja lähetä se käyttämällä alla olevaa lomaketta."
+msgstr ""
+"\n"
+"<span class='big strong'>Hyvä vierailija</span>, otamme mielellään vastaan "
+"palautetta. Kirjoita viestisi ja lähetä se käyttämällä alla olevaa lomaketta."
#: skins/default/templates/feedback.html:30
msgid "(to hear from us please enter a valid email or check the box below)"
-msgstr "(jos haluat vastauksen, lisää voimassa oleva sähköpostiosoite tai klikkaa raksi alla olevaan ruutuun)"
+msgstr ""
+"(jos haluat vastauksen, lisää voimassa oleva sähköpostiosoite tai klikkaa "
+"raksi alla olevaan ruutuun)"
#: skins/default/templates/feedback.html:37
#: skins/default/templates/feedback.html:46
@@ -4587,7 +5081,9 @@ msgstr "Lähetä"
msgid ""
"\n"
"Hello, this is a %(site_title)s forum feedback message.\n"
-msgstr "\n⏎\nHei, tämä on palauteviesti sivun %(site_title)s foorumilta.⏎\n"
+msgstr ""
+"\n"
+"Hei, tämä on palauteviesti sivun %(site_title)s foorumilta.\n"
#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
msgid "Help"
@@ -4611,39 +5107,53 @@ msgstr "Kiitos, että käytät sovellusta %(app_name)s! Se toimii näin."
msgid ""
"This site is for asking and answering questions, not for open-ended "
"discussions."
-msgstr "Tämä sivu on kysymyksiä ja vastauksia varten, ei avoimille keskusteluille."
+msgstr ""
+"Tämä sivu on kysymyksiä ja vastauksia varten, ei avoimille keskusteluille."
#: skins/default/templates/help.html:17
msgid ""
"We encourage everyone to use “question” space for asking and “answer” for "
"answering."
-msgstr "Kaikkien tulisi käyttää \"kysymys\"-kenttää kysymisten esittämiseen ja \"vastaus\"-kenttää vastaamiseen."
+msgstr ""
+"Kaikkien tulisi käyttää \"kysymys\"-kenttää kysymisten esittämiseen ja "
+"\"vastaus\"-kenttää vastaamiseen."
#: skins/default/templates/help.html:20
msgid ""
"Despite that, each question and answer can be commented – \n"
" the comments are good for the limited discussions."
-msgstr "Tästä huolimatta kaikkia kysymyksiä ja vastauksia voi kommentoida -⏎kommentit ovat hyviä rajoitetuissa keskusteluissa"
+msgstr ""
+"Tästä huolimatta kaikkia kysymyksiä ja vastauksia voi kommentoida -kommentit "
+"ovat hyviä rajoitetuissa keskusteluissa"
#: skins/default/templates/help.html:24
#, python-format
msgid ""
"Voting in %(app_name)s helps to select best answers and thank most helpful "
"users."
-msgstr "Äänestäminen sovelluksessa %(app_name)s auttaa parhaiden vastausten valitsemisessa ja hyödyllisimpien käyttäjien palkitsemisessa."
+msgstr ""
+"Äänestäminen sovelluksessa %(app_name)s auttaa parhaiden vastausten "
+"valitsemisessa ja hyödyllisimpien käyttäjien palkitsemisessa."
#: skins/default/templates/help.html:26
#, python-format
msgid ""
"Please vote when you find helpful information,\n"
" it really helps the %(app_name)s community."
-msgstr "Äänestä, jos löydät sinulle hyödyllistä tietoa.\nNäin autat %(app_name)s-yhteisöä huomattavasti."
+msgstr ""
+"Äänestä, jos löydät sinulle hyödyllistä tietoa.\n"
+"Näin autat %(app_name)s-yhteisöä huomattavasti."
#: skins/default/templates/help.html:29
msgid ""
-"Besides, you can @mention users anywhere in the text to point their attention,\n"
-" follow users and conversations and report inappropriate content by flagging it."
-msgstr "Voit myös mainita käyttäjiä missä tahansa kohdassa tekstiä. Osoittaaksesi heidän huomionsa,\nseuraa käyttäjiä ja keskusteluja ja raportoi sopimaton sisältö liputtamalla."
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+"Voit myös mainita käyttäjiä missä tahansa kohdassa tekstiä. Osoittaaksesi "
+"heidän huomionsa,\n"
+"seuraa käyttäjiä ja keskusteluja ja raportoi sopimaton sisältö liputtamalla."
#: skins/default/templates/help.html:32
msgid "Enjoy."
@@ -4658,7 +5168,9 @@ msgstr "Tuo StackExchange-dataa"
msgid ""
"<em>Warning:</em> if your database is not empty, please back it up\n"
" before attempting this operation."
-msgstr "<em>Varoitus:</em> jos tietokantasi ei ole tyhjä, varmuuskopioi se⏎\n ennen tämän toiminnon suorittamista."
+msgstr ""
+"<em>Varoitus:</em> jos tietokantasi ei ole tyhjä, varmuuskopioi se\n"
+"ennen tämän toiminnon suorittamista."
#: skins/default/templates/import_data.html:16
msgid ""
@@ -4666,7 +5178,10 @@ msgid ""
" the data import completes. This process may take several minutes.\n"
" Please note that feedback will be printed in plain text.\n"
" "
-msgstr "Lataa stackexchange dump .zip-tiedosto ja odota sitten, kunnes kaikki tiedot on siirretty. Tämä saattaa kestää useita minuutteja.\nHuomaa, että palaute kirjoitetaan tavallisena tekstinä."
+msgstr ""
+"Lataa stackexchange dump .zip-tiedosto ja odota sitten, kunnes kaikki tiedot "
+"on siirretty. Tämä saattaa kestää useita minuutteja.\n"
+"Huomaa, että palaute kirjoitetaan tavallisena tekstinä."
#: skins/default/templates/import_data.html:25
msgid "Import data"
@@ -4675,8 +5190,12 @@ msgstr "Tuo dataa"
#: skins/default/templates/import_data.html:27
msgid ""
"In the case you experience any difficulties in using this import tool,\n"
-" please try importing your data via command line: <code>python manage.py load_stackexchange path/to/your-data.zip</code>"
-msgstr "Jos sinulla on vaikeuksia tämän tiedonsiirtotyökalun kanssa,\nyritä datan siirtämistä komentorivin kautta: <code>python manage.py load_stackexchange path/to/your-data.zip</code>"
+" please try importing your data via command line: <code>python manage."
+"py load_stackexchange path/to/your-data.zip</code>"
+msgstr ""
+"Jos sinulla on vaikeuksia tämän tiedonsiirtotyökalun kanssa,\n"
+"yritä datan siirtämistä komentorivin kautta: <code>python manage.py "
+"load_stackexchange path/to/your-data.zip</code>"
#: skins/default/templates/instant_notification.html:1
#, python-format
@@ -4687,15 +5206,24 @@ msgstr "<p>Hyvä %(receiving_user_name)s,</p>"
#, python-format
msgid ""
"\n"
-"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a>:</p>\n"
-msgstr "\n⏎\n<p>%(update_author_name)s kirjoitti <a href=\"%(post_url)s\">uuden kommentin</a>:</p>⏎\n"
+"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a>:</"
+"p>\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s kirjoitti <a href=\"%(post_url)s\">uuden "
+"kommentin</a>:</p>\n"
#: skins/default/templates/instant_notification.html:8
#, python-format
msgid ""
"\n"
-"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a></p>\n"
-msgstr "\n⏎\n<p>%(update_author_name)s kirjoitti <a href=\"%(post_url)s\">uuden kommentin</a>:</p>⏎\n"
+"<p>%(update_author_name)s left a <a href=\"%(post_url)s\">new comment</a></"
+"p>\n"
+msgstr ""
+"\n"
+"⏎\n"
+"<p>%(update_author_name)s kirjoitti <a href=\"%(post_url)s\">uuden "
+"kommentin</a>:</p>⏎\n"
#: skins/default/templates/instant_notification.html:13
#, python-format
@@ -4703,7 +5231,10 @@ msgid ""
"\n"
"<p>%(update_author_name)s answered a question \n"
"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
-msgstr "\n⏎\n<p>%(update_author_name)s vastasi kysymykseen ⏎\n<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>⏎\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s vastasi kysymykseen\n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
#: skins/default/templates/instant_notification.html:19
#, python-format
@@ -4711,7 +5242,11 @@ 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 "\n<p>%(update_author_name)s esitti uuden kysymyksen\n<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n \n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s esitti uuden kysymyksen\n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
+" \n"
#: skins/default/templates/instant_notification.html:25
#, python-format
@@ -4719,7 +5254,10 @@ 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 "\n⏎\n<p>%(update_author_name)s päivitti vastausta kysymykseen⏎\n<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>⏎\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s päivitti vastausta kysymykseen\n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
#: skins/default/templates/instant_notification.html:31
#, python-format
@@ -4727,190 +5265,184 @@ msgid ""
"\n"
"<p>%(update_author_name)s updated a question \n"
"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
-msgstr "\n⏎\n<p>%(update_author_name)s päivitti kysymystä⏎\n<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>⏎\n"
+msgstr ""
+"\n"
+"<p>%(update_author_name)s päivitti kysymystä\n"
+"<a href=\"%(post_url)s\">%(origin_post_title)s</a></p>\n"
#: skins/default/templates/instant_notification.html:37
#, python-format
msgid ""
"\n"
"<div>%(content_preview)s</div>\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 "\n⏎\n<div>%(content_preview)s</div>⏎\n<p>Huom. - voit helposti <a href=\"%(user_subscriptions_url)s\">muuttaa</a>⏎\n, kuinka taajaan saat näitä huomautuksia, tai lopettaa niiden tilaamisen. Kiitos kiinnostuksestasi foorumiamme kohtaan!</p>⏎\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 ""
+"\n"
+"\n"
+"<div>%(content_preview)s</div>\n"
+"<p>Huom. - voit helposti <a href=\"%(user_subscriptions_url)s\">muuttaa</a>\n"
+", kuinka taajaan saat näitä huomautuksia, tai lopettaa niiden tilaamisen. "
+"Kiitos kiinnostuksestasi foorumiamme kohtaan!</p>\n"
#: skins/default/templates/instant_notification.html:42
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr "Toivoo ylläpito"
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr "Jaa kysymys sivulla %(site)s"
#: skins/default/templates/macros.html:16
-#: skins/default/templates/macros.html:440
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr "seuraa %(alias)s:ta"
#: skins/default/templates/macros.html:19
-#: skins/default/templates/macros.html:443
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr "lopeta %(alias)s:n seuraaminen"
#: skins/default/templates/macros.html:20
-#: skins/default/templates/macros.html:444
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr "seurataan %(alias)s:ta"
-#: skins/default/templates/macros.html:31
-msgid "i like this question (click again to cancel)"
-msgstr "pidän tästä kysymyksestä (klikkaa uudelleen peruaksesi)"
-
#: skins/default/templates/macros.html:33
-msgid "i like this answer (click again to cancel)"
-msgstr "pidän tästä vastauksesta (klikkaa uudestaan peruaksesi)"
-
-#: skins/default/templates/macros.html:39
msgid "current number of votes"
msgstr "äänien määrä nyt"
-#: skins/default/templates/macros.html:45
-msgid "i dont like this question (click again to cancel)"
-msgstr "en pidä tästä kysymyksestä (klikkaa uudelleen peruaksesi)"
-
-#: skins/default/templates/macros.html:47
-msgid "i dont like this answer (click again to cancel)"
-msgstr "en pidä tästä vastauksesta (klikkaa uudestaan peruaksesi)"
-
-#: skins/default/templates/macros.html:54
+#: skins/default/templates/macros.html:46
msgid "anonymous user"
msgstr "anonyymi käyttäjä"
-#: skins/default/templates/macros.html:87
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr "tämä merkintä on merkitty yhteisöwikiksi"
-#: skins/default/templates/macros.html:90
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
-msgstr "Tämä viesti on wiki.\nKäyttäjät, joilla on mainepisteitä yli &gt;%(wiki_min_rep)s voivat parantaa sitä."
+msgstr ""
+"Tämä viesti on wiki.\n"
+"Käyttäjät, joilla on mainepisteitä yli &gt;%(wiki_min_rep)s voivat parantaa "
+"sitä."
-#: skins/default/templates/macros.html:96
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "kysytty"
-#: skins/default/templates/macros.html:98
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "vastattu"
-#: skins/default/templates/macros.html:100
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "lisätty"
-#: skins/default/templates/macros.html:130
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "päivitetty"
-#: skins/default/templates/macros.html:206
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "katso kysymyksiä, joilla on tagi '%(tag)s'"
-#: skins/default/templates/macros.html:258
-#: skins/default/templates/macros.html:266
-#: skins/default/templates/question/javascript.html:19
-msgid "add comment"
-msgstr "lisää kommentti"
-
-#: skins/default/templates/macros.html:259
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "katso <strong>%(counter)s</strong> lisää"
-msgstr[1] "katso <strong>%(counter)s</strong> lisää"
-
-#: skins/default/templates/macros.html:261
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "Näytä <strong>%(counter)s</strong> kommentti lisää"
-msgstr[1] "Näytä <strong>%(counter)s</strong> kommenttia lisää"
-
-#: skins/default/templates/macros.html:305
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "poista kommentti"
-#: skins/default/templates/macros.html:511 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "käyttäjän %(username)s gravatar-kuva"
-#: skins/default/templates/macros.html:520
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr "Käyttäjän %(username)s nettisivu on %(url)s"
-#: skins/default/templates/macros.html:535
-#: skins/default/templates/macros.html:536
-#: skins/default/templates/macros.html:574
-#: skins/default/templates/macros.html:575
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "edellinen"
-#: skins/default/templates/macros.html:547
-#: skins/default/templates/macros.html:586
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "nykyinen sivu"
-#: skins/default/templates/macros.html:549
-#: skins/default/templates/macros.html:556
-#: skins/default/templates/macros.html:588
-#: skins/default/templates/macros.html:595
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "sivu %(num)s"
-#: skins/default/templates/macros.html:560
-#: skins/default/templates/macros.html:599
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "seuraava sivu"
-#: skins/default/templates/macros.html:611
+#: skins/default/templates/macros.html:607
+#, python-format
msgid "responses for %(username)s"
msgstr "vastauksia käyttäjälle %(username)s"
-#: skins/default/templates/macros.html:614
-#, python-format
-msgid "you have a new response"
+#: skins/default/templates/macros.html:610
+#, fuzzy, python-format
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "olet saanut uuden vastauksen"
msgstr[1] "olet saanut %(response_count)s uutta vastausta"
-#: skins/default/templates/macros.html:617
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "ei vastauksia"
-#: skins/default/templates/macros.html:632
-#: skins/default/templates/macros.html:633
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "%(new)s uutta liputettua merkintää ja %(seen)s jo nähtyä"
-#: skins/default/templates/macros.html:635
-#: skins/default/templates/macros.html:636
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr "%(new)s uutta liputettua merkintää"
-#: skins/default/templates/macros.html:641
-#: skins/default/templates/macros.html:642
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr "%(seen)s jo nähtyä liputettua merkintää"
@@ -4919,6 +5451,38 @@ msgstr "%(seen)s jo nähtyä liputettua merkintää"
msgid "Questions"
msgstr "Kysymykset"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "katso <strong>%(counter)s</strong> lisää"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "katso <strong>%(counter)s</strong> lisää"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "lisää kommentti"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Vastaa omaan kysymykseesi"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "Vastauksesi"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Kirjaudu sisään tai rekisteröidy vastataksesi"
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
msgid "Edit question"
@@ -4926,8 +5490,9 @@ msgstr "Muokkaa kysymystä"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Vaihda tageja"
+#, fuzzy
+msgid "Retag question"
+msgstr "Liittyvät kysymykset"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -4939,7 +5504,9 @@ msgstr "Miksi käyttää ja muokata tageja?"
#: skins/default/templates/question_retag.html:30
msgid "Tags help to keep the content better organized and searchable"
-msgstr "Tagit pitävät sisällön paremmin järjesteltynä ja helpottavat merkintöjen etsimistä aiheittain"
+msgstr ""
+"Tagit pitävät sisällön paremmin järjesteltynä ja helpottavat merkintöjen "
+"etsimistä aiheittain"
#: skins/default/templates/question_retag.html:32
msgid "tag editors receive special awards from the community"
@@ -4962,7 +5529,9 @@ msgstr "Nimi"
msgid ""
"This question has been closed by \n"
" <a href=\"%(closed_by_profile_url)s\">%(closed_by_username)s</a>\n"
-msgstr " <a href=\"%(closed_by_profile_url)s\">%(closed_by_username)s</a>⏎\non sulkenut tämän kysymyksen\n"
+msgstr ""
+" <a href=\"%(closed_by_profile_url)s\">%(closed_by_username)s</a>\n"
+"on sulkenut tämän kysymyksen\n"
#: skins/default/templates/reopen.html:16
msgid "Close reason:"
@@ -4980,6 +5549,13 @@ msgstr "Avaa tämä kysymys uudelleen?"
msgid "Reopen this question"
msgstr "Avaa tämä kysymys uudelleen"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5007,15 +5583,15 @@ msgstr "Kirjoittaudu seuraavien tagien tilaajaksi:"
msgid "Subscribe"
msgstr "Tilaa"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Tagilista"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr "\"%(stag)s\":n kanssa täsmäävät tagit"
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Tagilista"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
@@ -5051,7 +5627,9 @@ msgstr "katso maineikkaimpia käyttäjiä"
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
msgstr "mainepisteet"
#: skins/default/templates/users.html:20
@@ -5083,7 +5661,7 @@ msgstr "%(suser)s-kyselyn kanssa täsmäävät käyttäjät"
msgid "Nothing found."
msgstr "Mitään ei löytynyt."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:136
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5188,29 +5766,33 @@ msgstr "RSS"
#, python-format
msgid ""
"Please note: %(app_name)s requires javascript to work properly, please "
-"enable javascript in your browser, <a href=\"%(noscript_url)s\">here is "
-"how</a>"
-msgstr "Huom.: %(app_name)s vaatii javascriptiä toimiakseen kunnollisesti - ole hyvä ja salli javascript selaimessasi <a href=\"%(noscript_url)s\">näin</a>"
+"enable javascript in your browser, <a href=\"%(noscript_url)s\">here is how</"
+"a>"
+msgstr ""
+"Huom.: %(app_name)s vaatii javascriptiä toimiakseen kunnollisesti - ole hyvä "
+"ja salli javascript selaimessasi <a href=\"%(noscript_url)s\">näin</a>"
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] "tagi saa olla enintään %(max_chars)s merkin pituinen"
msgstr[1] "tagi saa olla enintään %(max_chars)s merkin pituinen"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "käytä %(tag_count)s tagiä"
msgstr[1] "käytä enintään %(tag_count)s tagiä"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
-msgstr "käytä enintään %(tag_count)s tagiä, kukin enintään %(max_chars)s merkin pituinen"
+msgstr ""
+"käytä enintään %(tag_count)s tagiä, kukin enintään %(max_chars)s merkin "
+"pituinen"
#: skins/default/templates/question/answer_tab_bar.html:3
#, python-format
@@ -5222,8 +5804,12 @@ msgid_plural ""
"\n"
" %(counter)s Answers\n"
" "
-msgstr[0] "\n%(counter)s Vastaus"
-msgstr[1] "\n%(counter)s Vastausta"
+msgstr[0] ""
+"\n"
+"%(counter)s Vastaus"
+msgstr[1] ""
+"\n"
+"%(counter)s Vastausta"
#: skins/default/templates/question/answer_tab_bar.html:11
msgid "Sort by »"
@@ -5233,31 +5819,14 @@ msgstr "Lajittele &raquo;"
msgid "oldest answers will be shown first"
msgstr "vanhimmat vastaukset näytetään ensin"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "vanhimmat vastaukset"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "uusimmat vastaukset näytetään ensin"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "uusimmat vastaukset"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "eniten ääniä saaneet vastaukset näytetään ensin"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "äänestetyimmät"
-
-#: skins/default/templates/question/content.html:40
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer Your Own Question"
-msgstr "Vastaa omaan kysymykseesi"
-
#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr "Kirjaudu sisään tai rekisteröidy vastataksesi"
@@ -5271,31 +5840,42 @@ msgid "Be the first one to answer this question!"
msgstr "Ole ensimmäinen vastaaja!"
#: skins/default/templates/question/new_answer_form.html:32
-msgid "you can answer anonymously and then login"
-msgstr "<span class='strong big'>Ala merkintöjen julkaiseminen anonyymisti</span> - vastauksesi tallennetaan sen hetkisessä sessiossa ja julkaistaan, kun olet kirjautunut sisään tai luot uuden tilin. Yritä antaa kysymyksiin <strong>merkityksellisiä vastauksia</strong>, <strong>käytä kommentteja</strong>, jos kyseessä on keskustelu, ja <strong>muista äänestää</strong> (kirjauduttuasi sisään)!"
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-msgid "answer your own question only to give an answer"
-msgstr "<span class='big strong'>Voit vastata omaan kysymykseesi</span>, mutta annathan kunnollisen <strong>vastauksen</strong>. Muista, että voit aina <strong>tarkistaa alkuperäisen kysymyksesi</strong>. <strong>Käytä kommentteja, jos kyseessä on keskustelu</strong> ja <strong>muista äänestää :)</strong> vastauksia, joista pidit (tai et pitänyt)! "
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:38
-msgid "please only give an answer, no discussions"
-msgstr "<span class='big strong'>Yritä antaa kunnollisia vastauksia</span>. Jos haluat kommentoida kysymystä tai vastausta, <strong>käytä kommentti-työkalua</strong>. Muista, että voit aina <strong>tarkistaa alkuperäisen kysymyksesi</strong>. <strong>Käytä kommentteja, jos kyseessä on keskustelu</strong> ja <strong>muista äänestää</strong>, se todella helpottaa parhaiden kysymysten ja vastausten valitsemista!"
-
-#: skins/default/templates/question/new_answer_form.html:45
-msgid "Login/Signup to Post Your Answer"
-msgstr "Kirjaudu antaaksesi vastauksen"
-
-#: skins/default/templates/question/new_answer_form.html:50
-msgid "Answer the question"
-msgstr "Lähetä vastauksesi"
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
msgid ""
"Know someone who can answer? Share a <a href=\"%(question_url)s\">link</a> "
"to this question via"
-msgstr "Tunnetko jonkun, joka osaa vastata? Jaa <a href=\"%(question_url)s\">linkki</a> kysymykseen:"
+msgstr ""
+"Tunnetko jonkun, joka osaa vastata? Jaa <a href=\"%(question_url)s\">linkki</"
+"a> kysymykseen:"
#: skins/default/templates/question/sharing_prompt_phrase.html:8
msgid " or"
@@ -5305,101 +5885,104 @@ msgstr "tai"
msgid "email"
msgstr "sähköposti"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr "Kysymystyökalut"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr "klikkaa lopettaaksesi tämän kysymyksen seuraaminen"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr "Seurataan"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr "Lopeta seuraaminen"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr "klikkaa seurataksesi tätä kysymystä"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr "Seuraa"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] "%(count)s seuraaja"
msgstr[1] "%(count)s seuraajaa"
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr "lähetä päivitykset sähköpostitse"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
-msgstr "<strong>Täällä</strong> voit (kirjauduttuasi sisään) tilata jaksoittaisen tähän kysymykseen liittyvän päivityksen sähköpostiisi"
+msgstr ""
+"<strong>Täällä</strong> voit (kirjauduttuasi sisään) tilata jaksoittaisen "
+"tähän kysymykseen liittyvän päivityksen sähköpostiisi"
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr "kirjoittaudu tämän kysymyksen RSS-syötteen tilaajaksi"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr "tilaa RSS-syöte"
-#: skins/default/templates/question/sidebar.html:44
+#: skins/default/templates/question/sidebar.html:46
msgid "Stats"
msgstr "Tilastot"
-#: skins/default/templates/question/sidebar.html:46
-msgid "question asked"
-msgstr "Kysytty"
+#: skins/default/templates/question/sidebar.html:48
+#, fuzzy
+msgid "Asked"
+msgstr "kysytty"
-#: skins/default/templates/question/sidebar.html:49
-msgid "question was seen"
-msgstr "Nähty"
+#: skins/default/templates/question/sidebar.html:51
+msgid "Seen"
+msgstr ""
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "kertaa"
-#: skins/default/templates/question/sidebar.html:52
-msgid "last updated"
+#: skins/default/templates/question/sidebar.html:54
+#, fuzzy
+msgid "Last updated"
msgstr "viimeksi päivitetty"
-#: skins/default/templates/question/sidebar.html:60
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Liittyvät kysymykset"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr "<strong>Ilmoita minulle</strong> päivittäin sähköpostilla, kun tulee uusia vastauksia tai päivityksiä"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+#, fuzzy
+msgid "Email me when there are any new answers"
+msgstr ""
+"<strong>Ilmoita minulle</strong> viikottain, kun tulee uusia vastauksia tai "
+"päivityksiä"
#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
-msgstr "<strong>Ilmoita minulle</strong> viikottain, kun tulee uusia vastauksia tai päivityksiä"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
-msgstr "<strong>Ilmoita minulle</strong> välittömästi uusista vastauksista tai päivityksistä"
+msgid "once you sign in you will be able to subscribe for any updates here"
+msgstr ""
+"<span class='strong'>Täällä</span> voit (kirjauduttuasi sisään) tilata "
+"jaksoittaisen päivityksen tästä kysymyksestä sähköpostiisi."
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+#, fuzzy
msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr "(huom.: voit aina <strong><a href='%(profile_url)s?sort=email_subscriptions'>muuttaa</a></strong> huomautusten lähettämistiheyttä)"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
-msgid "once you sign in you will be able to subscribe for any updates here"
-msgstr "<span class='strong'>Täällä</span> voit (kirjauduttuasi sisään) tilata jaksoittaisen päivityksen tästä kysymyksestä sähköpostiisi."
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+"<strong>Täällä</strong> voit (kirjauduttuasi sisään) tilata jaksoittaisen "
+"tähän kysymykseen liittyvän päivityksen sähköpostiisi"
#: skins/default/templates/user_profile/user.html:12
#, python-format
@@ -5432,12 +6015,12 @@ msgstr "Rekisteröity käyttäjä"
msgid "Screen Name"
msgstr "Käyttäjäunnus"
-#: skins/default/templates/user_profile/user_edit.html:60
+#: skins/default/templates/user_profile/user_edit.html:59
msgid "(cannot be changed)"
msgstr "(ei voida muuttaa)"
-#: skins/default/templates/user_profile/user_edit.html:102
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Päivitä"
@@ -5450,13 +6033,21 @@ msgstr "tilaukset"
msgid "Email subscription settings"
msgstr "Sähköpostitilauksen asetukset"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr "<span class='big strong'>Säädä sähköpostipäivitysten tiheyttä. </span> Voit vastaanottaa sähköpostiisi päivityksiä mielenkiintoisiin kysymyksiin liittyen , <strong><br/>auta yhteisöä</strong> vastaamalla kollegojesi kysymyksiin. Jos et halua vastaanottaa sähköposteja, valitse 'ei sähköpostia' -valinta kaikissa kohdissa alla. <br/>Päivityksiä lähetetään vain, jos jossain valitsemistasi kohdista on tapahtunut muutoksia."
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Lopeta sähköposti"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Sähköpostiosoitteesi:</strong> (<strong>ei</strong> näytetä muille "
+"käyttäjille, oltava voimassa)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5535,7 +6126,8 @@ msgid "real name"
msgstr "nimi"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "liittynyt"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5543,8 +6135,9 @@ msgid "last seen"
msgstr "nähty viimeksi"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr "sivusto"
+#, fuzzy
+msgid "website"
+msgstr "Nettisivu"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -5615,7 +6208,9 @@ msgstr "Lähetä viesti käyttäjälle %(username)s"
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 "Käyttäjälle lähetetään sähköposti jonka \"vastaa\"-kenttässä on sinun sähköpostiosoitteesti. Varmista, että osoitteesi on kirjoitettu oikein."
+msgstr ""
+"Käyttäjälle lähetetään sähköposti jonka \"vastaa\"-kenttässä on sinun "
+"sähköpostiosoitteesti. Varmista, että osoitteesi on kirjoitettu oikein."
#: skins/default/templates/user_profile/user_moderate.html:46
msgid "Message sent"
@@ -5630,13 +6225,18 @@ msgid ""
"Administrators have privileges of normal users, but in addition they can "
"assign/revoke any status to any user, and are exempt from the reputation "
"limits."
-msgstr "Ylläpitäjillä on tavallisten käyttäjien oikeudet, mutta lisäksi he voivat muuttaa kenen tahansa käyttäjän tilaa miksi tahansa, eivätkä ole riippuvaisia mainerajoituksista."
+msgstr ""
+"Ylläpitäjillä on tavallisten käyttäjien oikeudet, mutta lisäksi he voivat "
+"muuttaa kenen tahansa käyttäjän tilaa miksi tahansa, eivätkä ole "
+"riippuvaisia mainerajoituksista."
#: skins/default/templates/user_profile/user_moderate.html:77
msgid ""
"Moderators have the same privileges as administrators, but cannot add or "
"remove user status of 'moderator' or 'administrator'."
-msgstr "Moderaattoreilla on samat oikeudet kuin ylläpitäjillä, mutta he eivät voi lisätä tai poistaa moderaattorien tai ylläpitäjien käyttäjästatuksia."
+msgstr ""
+"Moderaattoreilla on samat oikeudet kuin ylläpitäjillä, mutta he eivät voi "
+"lisätä tai poistaa moderaattorien tai ylläpitäjien käyttäjästatuksia."
#: skins/default/templates/user_profile/user_moderate.html:80
msgid "'Approved' status means the same as regular user."
@@ -5644,12 +6244,15 @@ msgstr "'Hyväksytty'-status tarkoittaa tavallista käyttäjää."
#: skins/default/templates/user_profile/user_moderate.html:83
msgid "Suspended users can only edit or delete their own posts."
-msgstr "Jäähyllä olevat käyttäjät voivat muokata tai poistaa vain omia merkintöjään."
+msgstr ""
+"Jäähyllä olevat käyttäjät voivat muokata tai poistaa vain omia merkintöjään."
#: skins/default/templates/user_profile/user_moderate.html:86
msgid ""
"Blocked users can only login and send feedback to the site administrators."
-msgstr "Lukitut käyttäjät voivat vain kirjautua sisään ja lähettää palautetta sivun ylläpidolle."
+msgstr ""
+"Lukitut käyttäjät voivat vain kirjautua sisään ja lähettää palautetta sivun "
+"ylläpidolle."
#: skins/default/templates/user_profile/user_network.html:5
#: skins/default/templates/user_profile/user_tabs.html:18
@@ -5674,7 +6277,9 @@ msgstr[1] "Seuraa %(count)s käyttäjää"
msgid ""
"Your network is empty. Would you like to follow someone? - Just visit their "
"profiles and click \"follow\""
-msgstr "Verkostosi on tyhjä. Haluaisitko seurata jotakuta? Käy jonkun profiilissa ja klikkaa \"seuraa\"!"
+msgstr ""
+"Verkostosi on tyhjä. Haluaisitko seurata jotakuta? Käy jonkun profiilissa ja "
+"klikkaa \"seuraa\"!"
#: skins/default/templates/user_profile/user_network.html:21
#, python-format
@@ -5682,6 +6287,7 @@ msgid "%(username)s's network is empty"
msgstr "Käyttäjän %(username)s verkosto on tyhjä"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr "toiminta"
@@ -5691,10 +6297,6 @@ msgstr "toiminta"
msgid "source"
msgstr "lähde"
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr "mainepisteet"
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "Mainepisteiden muutokset."
@@ -5727,10 +6329,6 @@ msgstr[1] "Vastaukset"
msgid "the answer has been voted for %(answer_score)s times"
msgstr "Tämä vastaus on saanut %(answer_score)s ääntä"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "tämä vastaus on valittu oikeaksi"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -5783,7 +6381,7 @@ msgstr "Vastaa kysymykseen:"
msgid "User profile"
msgstr "Profiili"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:630
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "kommentteja ja vastauksia muihin kysymyksiin"
@@ -5792,30 +6390,24 @@ msgid "followers and followed users"
msgstr "seuraajat ja seuratut käyttäjät"
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "Kaavio käyttäjän mainepisteistä "
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "mainepisteet"
-
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr "kysymykset, joita käyttäjä seuraa"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "uusimmat"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:671
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "äänihistoria"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
msgstr "äänet"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:761
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "sähköpostin tilausasetukset"
@@ -5823,16 +6415,14 @@ msgstr "sähköpostin tilausasetukset"
msgid "moderate this user"
msgstr "hallitse tätä käyttäjää"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "äänet"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "Vastausvinkkejä"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "kysy kysymys, joka kiinnostaa tätä yhteisöä"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -5840,8 +6430,10 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr "yritä ennemmin vastata kysymykseen kuin uppoutua keskusteluun"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "anna tarpeeksi yksityiskohtia"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "kirjoita mahdollisimman paljon yksityiskohtia"
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -5855,7 +6447,8 @@ msgstr "katso usein kysytyt kysymykset"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Tekstin korostus ja muotoilu"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -5879,11 +6472,6 @@ msgid "**bold** or __bold__"
msgstr "**lihavointi** tai __lihavointi__"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "linkki"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -5910,33 +6498,38 @@ msgstr "yksinkertaisia HTML-tagejä tuetaan"
msgid "learn more about Markdown"
msgstr "opi lisää Markdownista"
-#: skins/default/templates/widgets/ask_button.html:5
-msgid "ask a question"
-msgstr "Esitä kysymys"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
-msgstr "<span class=\"strong big\">Voit esittää kysymyksesi anonyymisti</span>. Kun julkaiset merkinnän, sinut ohjataan sisäänkirjautumissivulle. Kysymyksesi tallennetaan senhetkisessä sessiossa ja julkaistaan, kun olet kirjautunut sisään. Sisäänkirjautuminen on yksinkertaista ja kestää noin 30 sekuntia. Rekisteröityminen alussa kestää enintään minuutin."
+msgstr ""
+"<span class=\"strong big\">Voit esittää kysymyksesi anonyymisti</span>. Kun "
+"julkaiset merkinnän, sinut ohjataan sisäänkirjautumissivulle. Kysymyksesi "
+"tallennetaan senhetkisessä sessiossa ja julkaistaan, kun olet kirjautunut "
+"sisään. Sisäänkirjautuminen on yksinkertaista ja kestää noin 30 sekuntia. "
+"Rekisteröityminen alussa kestää enintään minuutin."
+
+#: skins/default/templates/widgets/ask_form.html:7
+msgid ""
+"<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."
+msgstr ""
-#: skins/default/templates/widgets/ask_form.html:10
+#: skins/default/templates/widgets/ask_form.html:11
#, python-format
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
-msgstr "<span class='strong big'>Näyttää siltä, että sähköpostiosoitettasi %(email)s ei ole vielä vahvistettu.</span> Julkaistaksesi merkintöjä sinun on vahvistettava sähköpostiosoitteesi, katso lisätietoja <a href='%(email_validation_faq_url)s'>täältä</a>.<br>Voit julkaista kysymyksesi nyt ja vahvistaa sähköpostiosoitteesi sitten. Kysymyksesi on sen aikaa jonossa."
-
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Kirjaudu sisään kysyäksesi kysymyksesi"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Esitä kysymys"
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
-msgstr "Ihmiset"
+msgstr "Yhteisön jäseniä"
#: skins/default/templates/widgets/footer.html:33
#, python-format
@@ -5977,17 +6570,10 @@ msgstr "käyttäjät"
msgid "badges"
msgstr "mitalit"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "Vinkkejä kysymiseen"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "kysy kysymys mikä koskee aiheitamme"
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "kirjoita mahdollisimman paljon yksityiskohtia"
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr "kysy kysymys, joka kiinnostaa tätä yhteisöä"
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
@@ -6040,20 +6626,23 @@ msgid "badges:"
msgstr "mitalit:"
#: skins/default/templates/widgets/user_navigation.html:9
-msgid "logout"
-msgstr "kirjaudu ulos"
+#, fuzzy
+msgid "sign out"
+msgstr "poistu/"
#: skins/default/templates/widgets/user_navigation.html:12
-msgid "login"
-msgstr "Tervehdys! Ole hyvä ja kirjaudu sisään"
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "Kirjaudu sisään täällä:"
#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr "asetukset"
#: templatetags/extra_filters_jinja.py:279
-msgid "no items in counter"
-msgstr "no"
+#, fuzzy
+msgid "no"
+msgstr "ei mitään"
#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
@@ -6065,14 +6654,16 @@ msgstr "Kirjadu sisään lisätäksesi merkintöjä"
#: utils/decorators.py:205
msgid "Spam was detected on your post, sorry for if this is a mistake"
-msgstr "Sähköpostistasi löydettiin roskapostia, anteeksi, jos huomio oli virheellinen"
+msgstr ""
+"Sähköpostistasi löydettiin roskapostia, anteeksi, jos huomio oli virheellinen"
#: utils/forms.py:33
msgid "this field is required"
msgstr "vaadittu kenttä"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "Valitse käyttäjätunnus"
#: utils/forms.py:69
@@ -6093,19 +6684,23 @@ msgstr "käyttäjää ei ole tällä nimellä"
#: utils/forms.py:73
msgid "sorry, we have a serious error - user name is taken by several users"
-msgstr "Anteeksi, vakava virhe on tapahtunut - useampi käyttäjä on ottanut saman käyttäjänimen"
+msgstr ""
+"Anteeksi, vakava virhe on tapahtunut - useampi käyttäjä on ottanut saman "
+"käyttäjänimen"
#: utils/forms.py:74
msgid "user name can only consist of letters, empty space and underscore"
-msgstr "käyttäjänimi voi koostua aakkosista (a-z), välilyönneistä ( ) ja alaviivoista (_)"
+msgstr ""
+"käyttäjänimi voi koostua aakkosista (a-z), välilyönneistä ( ) ja "
+"alaviivoista (_)"
#: utils/forms.py:75
msgid "please use at least some alphabetic characters in the user name"
msgstr "käytä ainakin yhtä aakkosta käyttäjänimessä"
#: utils/forms.py:138
-msgid "your email address"
-msgstr "sähköpostiosoitteesi"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6119,17 +6714,13 @@ msgstr "syötä toimiva sähköpostiosoite"
msgid "this email is already used by someone else, please choose another"
msgstr "tämä sähköpostiosoite on jo käytössä"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "Salasana"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "salasana vaaditaan"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "Salasana uudestaan"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6161,6 +6752,50 @@ msgid_plural "%(min)d mins ago"
msgstr[0] "%(min)d minuutti sitten"
msgstr[1] "%(min)d minuuttia sitten"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+"<p>Esittääksesi kysymyksen sähköpostitse, ole hyvä ja:</p>\n"
+"<ul>\n"
+" <li>Muotoile aihe-kenttä näin: [Tagi1; Tagi2] Kysymyksen aihe</li>\n"
+" <li>Kirjoita kysymyksesi yksityiskohdat sähköpostin leipätekstiin</li>\n"
+"</ul>\n"
+"<p>Huomaa, että tagit voivat koostua myös useammista sanoista, ja tagit\n"
+"voidaan erottaa toisistaan pilkulla tai puolipisteellä</p>\n"
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+"<p>Valitettavasti kysymyksesi julkaisussa tapahtui virhe - ole hyvä ja ota "
+"yhteyttä %(site)s:n ylläpitoon</p>"
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+"<p>Valitettavasti sinun on rekisteröidyttävä <a href=\"%(url)s\">täällä</a> "
+"voidaksesi kysyä kysymyksiä %(site)s:lla sähköpostitse.</p>"
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+"<p>Valitettavasti kysymystäsi ei voitu lisätä sivulle käyttäjätilisi "
+"riittämättömien oikeuksien vuoksi.</p>"
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr "Uuden avatarin lisääminen onnistui"
@@ -6177,137 +6812,150 @@ msgstr "Avatarien poistaminen onnistui"
msgid "Sorry, but anonymous users cannot access the inbox"
msgstr "Valitettavasti anonyymit käyttäjät eivät voi käyttää inboxia"
-#: views/commands.py:111
-msgid "anonymous users cannot vote"
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta"
-#: views/commands.py:127
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "Valitettavasti sinulla ei ole enää ääniä käytettävissä tälle päivälle"
-#: views/commands.py:133
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Sinulla on %(votes_left)s ääntä jäljellä tälle päivälle"
-#: views/commands.py:208
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "Anteeksi, jotain on mennyt pieleen..."
-#: views/commands.py:227
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "Valitettavasti anonyymit käyttäjät eivät voi hyväksyä vastausta"
-#: views/commands.py:336
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
-msgstr "Tilauksesi on tallennettu, mutta sähköpostiosoite %(email)s pitää vaihvistaa, katso lisätietoja <a href='%(details_url)s'>täältä</a>"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
+msgstr ""
+"Tilauksesi on tallennettu, mutta sähköpostiosoite %(email)s pitää "
+"vaihvistaa, katso lisätietoja <a href='%(details_url)s'>täältä</a>"
-#: views/commands.py:343
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "sähköpostien päivitysväli on vaihdettu päivittäiseksi"
-#: views/commands.py:449
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr "Tagitilaus peruttiin (<a href=\"%(url)s\">peru</a>)."
-#: views/commands.py:458
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr "Kirjaudu sisään kirjoittautuaksesi %(tags)s:n tilaajaksi"
-#: views/commands.py:584
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr "Kirjaudu sisään äänestääksesi"
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Kirjaudu sisään äänestääksesi"
+
#: views/meta.py:37
#, python-format
msgid "About %(site)s"
msgstr "Tietoa sivusta %(site)s"
-#: views/meta.py:86
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Q&A-foorumin palaute"
-#: views/meta.py:87
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Kiitos palautteestasi!"
-#: views/meta.py:96
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr "Odotamme palautettasi, annathan palautetta ensi kerralla! :)"
-#: views/meta.py:100
+#: views/meta.py:106
msgid "Privacy policy"
msgstr "Yksityisyydensuoja"
-#: views/readers.py:134
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s kysymys, tagätty"
msgstr[1] "%(q_num)s kysymystä, tagätty"
-#: views/readers.py:366
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
-msgstr "Valitettavasti etsimäsi kommentti on poistettu eikä ole enää saatavilla"
+msgstr ""
+"Valitettavasti etsimäsi kommentti on poistettu eikä ole enää saatavilla"
#: views/users.py:206
msgid "moderate user"
msgstr "hallitse käyttäjää"
-#: views/users.py:373
+#: views/users.py:381
msgid "user profile"
msgstr "käyttäjäprofiili"
-#: views/users.py:374
+#: views/users.py:382
msgid "user profile overview"
msgstr "käyttäjäprofiilin yhteenveto"
-#: views/users.py:543
+#: views/users.py:551
msgid "recent user activity"
msgstr "viimeisimmät"
-#: views/users.py:544
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "profiili - viimeisimmät"
-#: views/users.py:631
+#: views/users.py:639
msgid "profile - responses"
msgstr "profiili - vastaukset"
-#: views/users.py:672
+#: views/users.py:680
msgid "profile - votes"
msgstr "profiili - äänet"
-#: views/users.py:693
-msgid "user reputation in the community"
-msgstr "käyttäjän mainepisteet"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr "mainepisteet"
-#: views/users.py:694
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "Profiili - Käyttäjän mainepisteet"
-#: views/users.py:712
+#: views/users.py:720
msgid "users favorite questions"
msgstr "käyttäjien suosikit"
-#: views/users.py:713
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "profiili - suosikkikysymykset"
-#: views/users.py:733 views/users.py:737
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "muutokset talletettu"
-#: views/users.py:743
+#: views/users.py:751
msgid "email updates canceled"
msgstr "sähköpostipäivitykset peruttu"
-#: views/users.py:762
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "profiili - sähköpostitilaukset"
@@ -6315,78 +6963,638 @@ msgstr "profiili - sähköpostitilaukset"
msgid "Sorry, anonymous users cannot upload files"
msgstr "Valitettavasti anonyymit käyttäjät eivät voi ladata tiedostoja"
-#: views/writers.py:70
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "hyväksytyt tiedostotyypit ovat '%(file_types)s'"
-#: views/writers.py:90
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "Ladattavan tiedoston enimmäiskoko on %(file_size)sK"
-#: views/writers.py:98
-msgid ""
-"Error uploading file. Please contact the site administrator. Thank you."
-msgstr "Virhe tiedostoa ladatessa. Ole hyvä ja ota yhteyttä sivun ylläpitoon. Kiitos."
+#: views/writers.py:92
+msgid "Error uploading file. Please contact the site administrator. Thank you."
+msgstr ""
+"Virhe tiedostoa ladatessa. Ole hyvä ja ota yhteyttä sivun ylläpitoon. Kiitos."
-#: views/writers.py:204
-msgid "Please log in to ask questions"
-msgstr "<span class=\"strong big\">Voit esittää kysymyksesi anonyymisti</span>. Kun julkaiset merkinnän, sinut ohjataan takaisin sisäänkirjautumissivulle. Kysymyksesi tallennetaan senhetkisessä sessiossa ja julkaistaan, kun olet kirjautunut sisään. Sisäänkirjautuminen tai rekisteröityminen on yksinkertaista. Sisäänkirjautuminen kestää noin 30 sekuntia, rekisteröityminen enintään minuutin."
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:469
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr "Kirjautu sisään vastataksesi kysymyksiin"
-#: views/writers.py:575
+#: views/writers.py:572
#, 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 "Valitettavasti et ole kirjautunut sisään, etkä voi lisätä kommentteja. Ole hyvä ja <a href=\"%(sign_in_url)s\">kirjaudu sisään</a>."
+"Sorry, you appear to be logged out and cannot post comments. Please <a href="
+"\"%(sign_in_url)s\">sign in</a>."
+msgstr ""
+"Valitettavasti et ole kirjautunut sisään, etkä voi lisätä kommentteja. Ole "
+"hyvä ja <a href=\"%(sign_in_url)s\">kirjaudu sisään</a>."
-#: views/writers.py:592
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr "Valitettavasti anonyymit käyttäjät eivät voi muokata kommentteja"
-#: views/writers.py:622
+#: views/writers.py:619
#, 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 "Valitettavasti et ole kirjautunut sisään, etkä voi poistaa kommentteja. Ole hyvä ja <a href=\"%(sign_in_url)s\">kirjaudu sisään</a>."
+msgstr ""
+"Valitettavasti et ole kirjautunut sisään, etkä voi poistaa kommentteja. Ole "
+"hyvä ja <a href=\"%(sign_in_url)s\">kirjaudu sisään</a>."
-#: views/writers.py:642
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "anteeksi, meillä näyttää olevan teknisiä vaikeuksia"
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "käytä-näitä-merkkejä-tageissa"
+
+#~ msgid "URL for the LDAP service"
+#~ msgstr "LDAP-palvelun URL"
+
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Selitä, miten LDAP-salasana vaihdetaan"
+
+#~ msgid "question_answered"
+#~ msgstr "vastasi"
+
+#~ msgid "question_commented"
+#~ msgstr "kommentoi"
+
+#~ msgid "answer_commented"
+#~ msgstr "vastausta kommentoitu"
+
+#~ msgid "answer_accepted"
+#~ msgstr "vastaus hyväksytty"
+
+#~ msgid "Incorrect username."
+#~ msgstr "Valitettavasti tätä käyttäjänimeä ei ole olemassa"
+
+#~ msgid ""
+#~ "This command may help you migrate to LDAP password authentication by "
+#~ "creating a record for LDAP association with each user account. There is "
+#~ "an assumption that ldap user id's are the same as user names registered "
+#~ "at the site. Before running this command it is necessary to set up LDAP "
+#~ "parameters in the \"External keys\" section of the site settings."
+#~ msgstr ""
+#~ "Tämä komento saattaa helpottaa LDAP-salasananvahvistustoimintoon "
+#~ "siirtymistä luomalla tallenteen jokaisen käyttäjätilin LDAP-yhteyksistä. "
+#~ "Oletettavasti LDAP-käyttäjätunnukset ovat samat kuin sivulle "
+#~ "rekisteröidyt käyttäjätunnukset. Ennen tämän komennon suorittamista LDAP-"
+#~ "parametrit on asennettava sivun asetusten \"Ulkopuoliset avaimet\"-"
+#~ "osiossa."
+
+#~ 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>Hyvä %(name)s,</p></p>Tätä kysymystä on päivitetty Q&A-foorumilla:</p>"
+#~ msgstr[1] ""
+#~ "<p>Hyvä %(name)s,</p><p>Näitä %(num)d kysymystä on päivitetty Q&A-"
+#~ "foorumilla:</p>"
+
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "<p>Muista, että voit aina <a href='%(email_settings_link)s'>säätää</a> "
+#~ "sähköpostipäivitysten taajuutta tai poistaa ne kokonaan.<br/>Jos uskot "
+#~ "tämän viestin olleen lähetetty vahingossa, ota yhteyttä foorumin "
+#~ "ylläpitoon sähköpostitse osoitteeseen %(admin_email)s.</"
+#~ "p><p>Ystävällisesti,,</p><p>foorumipalvelimesi.</p>"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr ""
+#~ "liitetiedoston lisääminen edellyttää, että mainepisteitä on yli >"
+#~ "%(min_rep)s"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr ""
+#~ "Valitettavasti tilisi näyttää olevan lukittu, etkä voi lisätä uusia "
+#~ "merkintöjä, ennen kuin ongelma on ratkaistu. Ole hyvä ja ota yhteyttä "
+#~ "foorumin ylläpitoon ongelman ratkaisemiseksi."
+
+#~ msgid "suspended users cannot post"
+#~ msgstr ""
+#~ "Valitettavasti tilisi näyttää olevan jäähyllä, etkä voi lisätä uusia "
+#~ "merkintöjä ennen kuin ongelma on ratkaistu. Voit kuitenkin muokata "
+#~ "aiemmin kirjoittamiasi merkintöjä. Ole hyvä ja ota yhteyttä foorumin "
+#~ "ylläpitoon ongelman ratkaisemiseksi."
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr ""
+#~ "Olet liputtanut tämän kysymyksen aikaisemmin, ja voit tehdä niin vain "
+#~ "kerran."
+
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr ""
+#~ "Valitettavasti tilisi on lukittu, etkä voi liputtaa merkintää loukkaavaksi"
+
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr ""
+#~ "Valitettavasti tilisi näyttää olevan jäähyllä, etkä voi lisätä uusia "
+#~ "merkintöjä, kunnes ongelmasi on ratkaistu. Voit kuitenkin muokata "
+#~ "aiemmin kirjoittamiasi merkintöjä. Ole hyvä, ja ota yhteyttä foorumin "
+#~ "ylläpitoon ratkaistaksesi ongelman."
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr ""
+#~ "Valitettavasti tarvitset vähintään %(min_rep)s:n maineen voidaksesi "
+#~ "liputtaa merkintöjä loukkaaviksi"
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr ""
+#~ "Valitettavasti olet liputtanut merkintöjä loukkaaviksi "
+#~ "%(max_flags_per_day)s kertaa, etkä voi ylittää tätä määrää yhden päivän "
+#~ "aikana."
+
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr "Valitettavasti tilisi on lukittu, etkä voi poistaa liputuksia"
+
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr ""
+#~ "Valitettavasti tilisi näyttää olevan jäähyllä, etkä voi poistaa "
+#~ "liputuksia. Ole hyvä ja ota yhteyttä foorumin ylläpitoon löytääksesi "
+#~ "ratkaisun."
+
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] ""
+#~ "Valitettavasti tarvitset vähintään %(min_rep)d mainepisteen voidaksesi "
+#~ "liputtaa merkintöjä"
+#~ msgstr[1] ""
+#~ "Valitettavasti tarvitset vähintään %(min_rep)d mainepistettä voidaksesi "
+#~ "liputtaa merkintöjä"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "vanhoja ääniä ei voi muuttaa"
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Kirjoita alla olevaan kenttään uusi "
+#~ "sähköpostiosoitteesi</span> jos haluat käyttää muuta sähköpostiosoitetta "
+#~ "<strong>päivitystilauksille</strong>.<br>Tämänhetkinen sähköpostisi on "
+#~ "<strong>%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Kirjoita sähköpostiosoitteesi alla olevaan "
+#~ "kenttään.</span> Tällä Q&A-foorumilla vaaditaan voimassa oleva "
+#~ "sähköpostiosoite. Halutessasi voit <strong>vastaanottaa päivityksiä</"
+#~ "strong> mielenkiintoisista kysymyksistä tai koko foorumista "
+#~ "sähköpostitse. Sähköpostiasi käytetään myös henkilökohtaisen <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar-kuvakkeen</strong></a> "
+#~ "luomiseksi tilillesi. Sähköpostiosoitteita ei koskaan näytetä tai jaeta "
+#~ "muille käyttäjille."
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Uusi sähköpostiosoitteesi:</strong> (<strong>ei</strong> näytetä "
+#~ "muille käyttäjille, oltava voimassa)"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Vahvistuslinkki on lähetetty sähköpostitse "
+#~ "osoitteeseen %(email)s.</span> <strong>Klikkaa sähköpostistasi löytyvää "
+#~ "linkkiä</strong> selaimessasi. Sähköpostin vahvistus on tarpeellista, "
+#~ "jotta voimme varmistaa sähköpostin oikean käytön <span class=\"orange"
+#~ "\">Q&A-foorumilla</span>. Jos haluat käyttää <strong>toista "
+#~ "sähköpostiosoitetta</strong>, <a "
+#~ "href='%(change_email_url)s'><strong>vaihda uudelleen</strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Sähköpostiosoitettasi %(email)s ei vaihdettu.</"
+#~ "span> Voit halutessasi vaihtaa sen myöhemmin koska tahansa muokkaamalla "
+#~ "sitä käyttäjäprofiilissasi tai käyttämällä <a "
+#~ "href='%(change_email_url)s'><strong>edellistä lomaketta</strong></a> "
+#~ "uudelleen."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Sähköpostiosoitteesi on nyt %(email)s. </span> "
+#~ "Päivitykset kysymyksistä, joista pidät eniten, lähetetään tähän "
+#~ "osoitteeseen. Sähköpostipäivitykset lähetetään kerran päivässä tai "
+#~ "harvemmin, vain jos uutisia on."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Kiitos sähköpostiosoitteesi vahvistamisesta!</"
+#~ "span> Nyt voit <strong>kysyä</strong> ja <strong>vastata kysymyksiin</"
+#~ "strong>. Jos löydät mielenkiintoisen kysymyksen, voit nyt myös "
+#~ "<strong>tilata päivityksiä</strong> - näin saat päivityksen keskustelusta "
+#~ "<strong>kerran päivässä</strong> tai harvemmin.."
+
+#~ msgid "email key not sent"
+#~ msgstr "Vahvistussähköpostia ei lähetetty"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Nykyinen sähköpostiosoitteesi %(email)s on jo "
+#~ "vahvistettu</span> eikä uutta koodia lähetetty. Voit <a "
+#~ "href='%(change_link)s'>vaihtaa</a> käyttämääsi sähköpostiosoitetta jos "
+#~ "haluat."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Olet kirjautunut sisään ensimmäistä kertaa "
+#~ "käyttäen %(provider)s-palvelua.</span> Luo <strong>käyttätunnuksesi</"
+#~ "strong> ja tallenna <strong>sähköpostiosoitteesi</strong>. Tallennetulla "
+#~ "sähköpostiosoitteella voit <strong>tilata päivityksiä</strong> "
+#~ "mielenkiintoisimmista kysymyksistä ja sitä käytetään oman avatar-"
+#~ "kuvakkeesi luomiseen ja palauttamiseen - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<p><span class='strong big'>Hups... käyttäjätunnus %(username)s näyttää "
+#~ "jo olevan toisen tilin käytössä.</span></p><p>Valitse toinen "
+#~ "käyttäjätunnus käytettäväksi %(provider)s-palvelun kautta "
+#~ "sisäänkirjauduttuessa. Tarvitset myös voimassa olevan sähköpostiosoitteen "
+#~ "<span class='orange'>Q&A-foorumilla</span>. Sähköpostiasi käytetään oman "
+#~ "avatar-kuvakkeesi luomiseen ja palauttamiseen - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>. "
+#~ "Halutessasi voit myös <strong>tilata päivityksiä</strong> sähköpostiisi "
+#~ "mielenkiintoisimmista kysymyksistä foorumilla. Sähköpostiosoitteita ei "
+#~ "ikinä näytetä tai jaeta muiden käyttäjien kanssa.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Olet kirjautunut sisään ensimmäistä kertaa "
+#~ "käyttäen %(provider)s-palvelua.</span></p><p>Voit joko pitää "
+#~ "<strong>käyttäjätunnuksesi</strong> samana kuin %(provider)s-"
+#~ "sisäänkirjautumisnimesi tai valita jonkun muun nimimerkin.</p><p> "
+#~ "Tallennathan myös voimassa olevan <strong>sähköpostiosoitteen</strong>. "
+#~ "With the email you can <strong>subscribe for the updates</strong> on the "
+#~ "most interesting questions. Tallennetulla sähköpostiosoitteella voit "
+#~ "<strong>tilata päivityksiä</strong> mielenkiintoisimmista kysymyksistä ja "
+#~ "sitä käytetään oman avatar-kuvakkeesi luomiseen ja palauttamiseen - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">Olet kirjautunut sisään ensimmäistä kertaa "
+#~ "käyttäen Facebookin sisäänkirjautumispalvelua.</span> Luo "
+#~ "<strong>käyttätunnuksesi</strong> ja tallenna "
+#~ "<strong>sähköpostiosoitteesi</strong>. Tallennetulla "
+#~ "sähköpostiosoitteella voit <strong>tilata päivityksiä</strong> "
+#~ "mielenkiintoisimmista kysymyksistä ja sitä käytetään oman avatar-"
+#~ "kuvakkeesi luomiseen ja palauttamiseen - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid "This account already exists, please use another."
+#~ msgstr "Tällä käyttäjänimellä on jo tili, ole hyvä ja käytä toista."
+
+#~ msgid "Screen name label"
+#~ msgstr "<strong>Käyttäjätunnus</strong> (<i>näytetään muille</i>)"
+
+#~ msgid "Email address label"
+#~ msgstr "Sähköpostiosoite"
+
+#~ msgid "receive updates motivational blurb"
+#~ msgstr ""
+#~ "<strong>Vastaanota foorumipäivityksiä sähköpostitse</strong> - näin autat "
+#~ "yhteisöämme kasvamaan ja tulemaan hyödyllisemmäksi.<br/><span "
+#~ "class='orange'>Q&A-foorumi</span> lähettää vakiona enintään <strong>yhden "
+#~ "päivityssähköpostin viikossa</strong> - Vain, jos uutisia on.<br/>Voit "
+#~ "halutessasi muuttaa tätä asetusta nyt tai koska tahansa myöhemmin "
+#~ "käyttäjätililtäsi."
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr ""
+#~ "Tagisuodatin-työkalu ilmestyy oikeanpuoleiseen palkkiin, kun olet "
+#~ "kirjautunut sisään."
+
+#~ msgid "create account"
+#~ msgstr "Luo tunnus"
+
+#~ msgid "Login"
+#~ msgstr "Kirjaudu sisään"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "Miksi käyttää OpenID:tä?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr ""
+#~ "OpenID:n avulla sinun ei tarvitse luoda uutta käyttäjätunnusta ja "
+#~ "salasanaa."
+
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "Voit turvallisesti käyttää samaoja kirjautumistietoja kaikilla OpenID:tä "
+#~ "tukevilla nettipalveluissa."
+
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "Maailmanlaajuisesti OpenID:tä käyttää jo yli 160 miljoonaa ihmistä ja yli "
+#~ "10.000 sivustoa."
+
+#~ msgid "openid is supported open standard"
+#~ msgstr ""
+#~ "OpenID on avoin standardi, jota käyttää moni yritys ja organisaatio."
+
+#~ msgid "Find out more"
+#~ msgstr "Lisätietoja"
+
+#~ msgid "Get OpenID"
+#~ msgstr "Hanki OpenID"
+
+#~ msgid "Traditional signup info"
+#~ msgstr ""
+#~ "<span class='strong big'>Halutessasi voit luoda foorumi-tunnuksesi ja "
+#~ "salasanasi täällä. </span>Muista kuitenkin, että tuemme myös "
+#~ "<strong>OpenID-sisäänkirjautumista</strong>. <strong>OpenID:llä</strong> "
+#~ "voit käyttää ulkopuolista sisäänkirjautumistasi uudelleen (esim. Gmail "
+#~ "tai AOL) ikinä jakamatta kirjautumistietojasi kenenkään kanssa ja "
+#~ "muistamatta uutta salasanaa."
+
+#~ msgid "Create Account"
+#~ msgstr "Luo tunnus"
+
+#~ msgid "answer permanent link"
+#~ msgstr "pysyväislinkki"
+
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "%(question_author)s on valinnut tämän kysymyksen oikeaksi"
+
+#~ msgid "Related tags"
+#~ msgstr "Tagit"
+
+#~ msgid "Ask a question"
+#~ msgstr "Esitä kysymys"
+
+#~ msgid "Badges summary"
+#~ msgstr "Mitalit"
+
+#~ msgid "gold badge description"
+#~ msgstr ""
+#~ "Kultamitali on tämän yhteisön korkein palkinto. Saadaksesi kultamitalin, "
+#~ "sinun on aktiivisen osallistumisesi lisäksi osoitettava merkittävää "
+#~ "tietämystä ja kykyjä."
+
+#~ msgid "silver badge description"
+#~ msgstr "hopeamitali: myönnetään erittäin korkealaatuisesta panoksesta"
+
+#~ msgid "bronze badge description"
+#~ msgstr "pronssimitali: annetaan usein erikoiskunniana"
+
+#~ 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 ""
+#~ "on <strong>kysymys ja vastaus</strong> -sivusto - <strong> ei "
+#~ "keskustelupalsta tai -ryhmä</strong>. Vältä kysymyksiä, jotka yrittävät "
+#~ "nostaa pintaan väittelyä. Käytä kommentteja pieniin lisäkysymyksiin tai "
+#~ "vastauksiin."
+
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "Kun kysymystä tai vastausta äänestetään ylöspäin, ansaitsee kysyjä tai "
+#~ "vastaaja pisteitä, joita kutsutaan \"mainepisteiksi\". Nämä pisteet "
+#~ "kuvaavat karkealla tasolla yhteisön luottamusta. Mainepisteiden "
+#~ "perusteella voidaan käyttäjille myöntää asteittain erilaisia "
+#~ "moderointitehtäviä."
+
+#~ msgid "what is gravatar"
+#~ msgstr "Miten vaihdan profiilissani olevan kuvan (gravatar)?"
+
+#~ msgid "gravatar faq info"
+#~ msgstr ""
+#~ "<p>Käyttäjän profiilissa näkyvä kuva on nimeltään <strong>gravatar</"
+#~ "strong> (<strong>g</strong>lobally <strong>r</strong>ecognized "
+#~ "<strong>avatar</strong>).</p><p>Se toimii näin: <strong>kryptografinen "
+#~ "koodi</strong> luodaan käyttäen sähköpostiosoitettasi. Lataat kuvasi (tai "
+#~ "haluamasi alter ego -kuvan) sivulle <a href='http://gravatar."
+#~ "com'><strong>gravatar.com</strong></a>, josta myöhemmin haemme kuvasi "
+#~ "käyttäen koodia.</p><p>Näin kaikki luottamasi nettisivut voivat näyttää "
+#~ "kuvasi merkintöjesi vieressä ja sähköpostiosoitteesi pysyy yksityisenä.</"
+#~ "p><p><strong>Tee tilistäsi persoonallinen</strong> kuvan avulla - "
+#~ "rekisteröidy osoitteessa <a href='http://gravatar.com'><strong>gravatar."
+#~ "com</strong></a> (varmista, että käytät samaa sähköpostiosoitetta, jota "
+#~ "käytit rekisteröityessäsi tänne). Vakiokuvake, joka näyttää "
+#~ "keittiölaatalta, luodaan automaattisesti.</p>"
+
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "pidän tästä kysymyksestä (klikkaa uudelleen peruaksesi)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "pidän tästä vastauksesta (klikkaa uudestaan peruaksesi)"
+
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "en pidä tästä kysymyksestä (klikkaa uudelleen peruaksesi)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "en pidä tästä vastauksesta (klikkaa uudestaan peruaksesi)"
+
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] "Näytä <strong>%(counter)s</strong> kommentti lisää"
+#~ msgstr[1] "Näytä <strong>%(counter)s</strong> kommenttia lisää"
+
+#~ msgid "Change tags"
+#~ msgstr "Vaihda tageja"
+
+#~ msgid "reputation"
+#~ msgstr "mainepisteet"
+
+#~ msgid "oldest answers"
+#~ msgstr "vanhimmat vastaukset"
+
+#~ msgid "newest answers"
+#~ msgstr "uusimmat vastaukset"
+
+#~ msgid "popular answers"
+#~ msgstr "äänestetyimmät"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr ""
+#~ "<span class='strong big'>Ala merkintöjen julkaiseminen anonyymisti</span> "
+#~ "- vastauksesi tallennetaan sen hetkisessä sessiossa ja julkaistaan, kun "
+#~ "olet kirjautunut sisään tai luot uuden tilin. Yritä antaa kysymyksiin "
+#~ "<strong>merkityksellisiä vastauksia</strong>, <strong>käytä kommentteja</"
+#~ "strong>, jos kyseessä on keskustelu, ja <strong>muista äänestää</strong> "
+#~ "(kirjauduttuasi sisään)!"
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr ""
+#~ "<span class='big strong'>Voit vastata omaan kysymykseesi</span>, mutta "
+#~ "annathan kunnollisen <strong>vastauksen</strong>. Muista, että voit aina "
+#~ "<strong>tarkistaa alkuperäisen kysymyksesi</strong>. <strong>Käytä "
+#~ "kommentteja, jos kyseessä on keskustelu</strong> ja <strong>muista "
+#~ "äänestää :)</strong> vastauksia, joista pidit (tai et pitänyt)! "
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr ""
+#~ "<span class='big strong'>Yritä antaa kunnollisia vastauksia</span>. Jos "
+#~ "haluat kommentoida kysymystä tai vastausta, <strong>käytä kommentti-"
+#~ "työkalua</strong>. Muista, että voit aina <strong>tarkistaa alkuperäisen "
+#~ "kysymyksesi</strong>. <strong>Käytä kommentteja, jos kyseessä on "
+#~ "keskustelu</strong> ja <strong>muista äänestää</strong>, se todella "
+#~ "helpottaa parhaiden kysymysten ja vastausten valitsemista!"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Kirjaudu antaaksesi vastauksen"
+
+#~ msgid "Answer the question"
+#~ msgstr "Lähetä vastauksesi"
+
+#~ msgid "question asked"
+#~ msgstr "Kysytty"
+
+#~ msgid "question was seen"
+#~ msgstr "Nähty"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Ilmoita minulle</strong> päivittäin sähköpostilla, kun tulee "
+#~ "uusia vastauksia tai päivityksiä"
+
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Ilmoita minulle</strong> välittömästi uusista vastauksista tai "
+#~ "päivityksistä"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr ""
+#~ "(huom.: voit aina <strong><a href='%(profile_url)s?"
+#~ "sort=email_subscriptions'>muuttaa</a></strong> huomautusten "
+#~ "lähettämistiheyttä)"
+
+#~ msgid "email subscription settings info"
+#~ msgstr ""
+#~ "<span class='big strong'>Säädä sähköpostipäivitysten tiheyttä. </span> "
+#~ "Voit vastaanottaa sähköpostiisi päivityksiä mielenkiintoisiin kysymyksiin "
+#~ "liittyen , <strong><br/>auta yhteisöä</strong> vastaamalla kollegojesi "
+#~ "kysymyksiin. Jos et halua vastaanottaa sähköposteja, valitse 'ei "
+#~ "sähköpostia' -valinta kaikissa kohdissa alla. <br/>Päivityksiä lähetetään "
+#~ "vain, jos jossain valitsemistasi kohdista on tapahtunut muutoksia."
+
+#~ msgid "Stop sending email"
+#~ msgstr "Lopeta sähköposti"
+
+#~ msgid "user website"
+#~ msgstr "sivusto"
+
+#~ msgid "reputation history"
+#~ msgstr "mainepisteet"
+
+#~ msgid "recent activity"
+#~ msgstr "uusimmat"
+
+#~ msgid "casted votes"
+#~ msgstr "äänet"
+
+#~ msgid "answer tips"
+#~ msgstr "Vastausvinkkejä"
+
+#~ msgid "please try to provide details"
+#~ msgstr "anna tarpeeksi yksityiskohtia"
+
+#~ msgid "ask a question"
+#~ msgstr "Esitä kysymys"
+
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ " see %(email_validation_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<span class='strong big'>Näyttää siltä, että sähköpostiosoitettasi "
+#~ "%(email)s ei ole vielä vahvistettu.</span> Julkaistaksesi merkintöjä "
+#~ "sinun on vahvistettava sähköpostiosoitteesi, katso lisätietoja <a "
+#~ "href='%(email_validation_faq_url)s'>täältä</a>.<br>Voit julkaista "
+#~ "kysymyksesi nyt ja vahvistaa sähköpostiosoitteesi sitten. Kysymyksesi on "
+#~ "sen aikaa jonossa."
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Kirjaudu sisään kysyäksesi kysymyksesi"
+
+#~ msgid "question tips"
+#~ msgstr "Vinkkejä kysymiseen"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "kysy kysymys mikä koskee aiheitamme"
+
+#~ msgid "logout"
+#~ msgstr "kirjaudu ulos"
+
+#~ msgid "login"
+#~ msgstr "Tervehdys! Ole hyvä ja kirjaudu sisään"
+
+#~ msgid "no items in counter"
+#~ msgstr "0"
+
+#~ msgid "your email address"
+#~ msgstr "sähköpostiosoitteesi"
+
+#~ msgid "choose password"
+#~ msgstr "Salasana"
+
+#~ msgid "retype password"
+#~ msgstr "Salasana uudestaan"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "käyttäjän mainepisteet"
+
+#~ msgid "Please log in to ask questions"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Voit esittää kysymyksesi anonyymisti</span>. "
+#~ "Kun julkaiset merkinnän, sinut ohjataan takaisin "
+#~ "sisäänkirjautumissivulle. Kysymyksesi tallennetaan senhetkisessä "
+#~ "sessiossa ja julkaistaan, kun olet kirjautunut sisään. "
+#~ "Sisäänkirjautuminen tai rekisteröityminen on yksinkertaista. "
+#~ "Sisäänkirjautuminen kestää noin 30 sekuntia, rekisteröityminen enintään "
+#~ "minuutin."
+
#~ msgid ""
-#~ "As a registered user you can login with your OpenID, log out of the site or "
-#~ "permanently remove your account."
+#~ "As a registered user you can login with your OpenID, log out of the site "
+#~ "or permanently remove your account."
#~ msgstr ""
#~ "Clicking <strong>Logout</strong> will log you out from the forum but will "
#~ "not sign you off from your OpenID provider.</p><p>If you wish to sign off "
-#~ "completely - please make sure to log out from your OpenID provider as well."
+#~ "completely - please make sure to log out from your OpenID provider as "
+#~ "well."
#~ msgid "Email verification subject line"
#~ msgstr "Verification Email from Q&A forum"
#~ msgid ""
-#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s"
+#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)"
+#~ "s"
#~ msgstr ""
-#~ "<form style='margin:0;padding:0;' action='%(send_email_key_url)s'><p><span "
-#~ "class=\"bigger strong\">How?</span> If you have just set or changed your "
-#~ "email address - <strong>check your email and click the included "
-#~ "link</strong>.<br>The link contains a key generated specifically for you. "
-#~ "You can also <button style='display:inline' type='submit'><strong>get a new "
-#~ "key</strong></button> and check your email again.</p></form><span "
-#~ "class=\"bigger strong\">Why?</span> Email validation is required to make "
-#~ "sure that <strong>only you can post messages</strong> on your behalf and to "
-#~ "<strong>minimize spam</strong> posts.<br>With email you can "
-#~ "<strong>subscribe for updates</strong> on the most interesting questions. "
-#~ "Also, when you sign up for the first time - create a unique <a "
-#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> personal "
-#~ "image.</p>"
+#~ "<form style='margin:0;padding:0;' action='%(send_email_key_url)"
+#~ "s'><p><span class=\"bigger strong\">How?</span> If you have just set or "
+#~ "changed your email address - <strong>check your email and click the "
+#~ "included link</strong>.<br>The link contains a key generated specifically "
+#~ "for you. You can also <button style='display:inline' "
+#~ "type='submit'><strong>get a new key</strong></button> and check your "
+#~ "email again.</p></form><span class=\"bigger strong\">Why?</span> Email "
+#~ "validation is required to make sure that <strong>only you can post "
+#~ "messages</strong> on your behalf and to <strong>minimize spam</strong> "
+#~ "posts.<br>With email you can <strong>subscribe for updates</strong> on "
+#~ "the most interesting questions. Also, when you sign up for the first time "
+#~ "- create a unique <a href='%(gravatar_faq_url)s'><strong>gravatar</"
+#~ "strong></a> personal image.</p>"
#~ msgid "reputation points"
#~ msgstr "karma"
diff --git a/askbot/locale/fi/LC_MESSAGES/djangojs.po b/askbot/locale/fi/LC_MESSAGES/djangojs.po
index ddc2a539..2c4ad82c 100644
--- a/askbot/locale/fi/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/fi/LC_MESSAGES/djangojs.po
@@ -1,26 +1,27 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Hannu Sehm <hannu@kipax.fi>, 2012.
# Otto Nuoranne <otto.nuoranne@hotmail.com>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
-"Report-Msgid-Bugs-To: http://askbot.org/\n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-04-18 18:50-0500\n"
"PO-Revision-Date: 2012-03-12 09:32+0000\n"
"Last-Translator: Hannu Sehm <hannu@kipax.fi>\n"
-"Language-Team: Finnish (http://www.transifex.net/projects/p/askbot/language/fi/)\n"
+"Language-Team: Finnish (http://www.transifex.net/projects/p/askbot/language/"
+"fi/)\n"
+"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr "Oletko varma että haluat poistaa %s:n sisäänkirjautumisen?"
@@ -32,44 +33,46 @@ msgstr "Lisää yksi tai useampi sisäänkirjautumistapa"
msgid ""
"You don't have a method to log in right now, please add one or more by "
"clicking any of the icons below."
-msgstr "Sinulle i tällä hetkellä ole yhtäkään sisäänkirjautumistapaa, ole hyvä ja lisää yksi tai useampi klikkaamalla jotakin alla olevista kuvakkeista."
+msgstr ""
+"Sinulle i tällä hetkellä ole yhtäkään sisäänkirjautumistapaa, ole hyvä ja "
+"lisää yksi tai useampi klikkaamalla jotakin alla olevista kuvakkeista."
#: skins/common/media/jquery-openid/jquery.openid.js:135
msgid "passwords do not match"
msgstr "salasanat eivät täsmää"
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr "Näytä/muokkaa tämänhetkisiä sisäänkirjautumistapoja"
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr "Kirjoita tähän %s ja jatka sitten"
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr "Yhdistä %(provider_name)s-tilisi sivuun %(site)s"
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr "Vaihda %s-salasanaasi"
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr "Vaihda salasanaa"
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr "Luo salasana %s:lle"
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr "Luo salasana"
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr "Luo salasanalla suojattu tili"
@@ -77,146 +80,79 @@ msgstr "Luo salasanalla suojattu tili"
msgid "loading..."
msgstr "ladataan..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "anna vähintään yksi tagi"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "ei voi jättää tyhjäksi"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "syötä vähintään %s merkkiä"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "ole hyvä ja kirjoita otsikko"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "syötä vähintään %s merkkiä"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "ei käyttöoikeutta"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "et voi hyväksyä omaa vastaustasi parhaaksi"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "ole hyvä ja kirjaudu sisään"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr "anonyymit käyttäjät eivät voi seurata kysymyksiä"
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr "anonyymit käyttäjät eivät voi kirjoittautua kysymysten tilaajiksi"
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta "
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
-msgstr "oletko varma, että tämä on roskaposti, loukkaava tai muuta hyväksymätöntä?"
+msgstr ""
+"oletko varma, että tämä on roskaposti, loukkaava tai muuta hyväksymätöntä?"
+
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr ""
+"oletko varma, että tämä on roskaposti, loukkaava tai muuta hyväksymätöntä?"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "anonyymit käyttäjät eivät voi liputtaa merkintöjä loukkaaviksi"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "oletko varma, että haluat poistaa tämän?"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "postauksesi on palautettu!"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "postauksesi on poistettu"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "Seuraa"
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] "%s seuraaja"
-msgstr[1] "%s seuraajaa"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>Seurataan</div><div class=\"unfollow\">Lopeta seuraaminen</div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "peru poistaminen"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "poista"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "lisää kommentti"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "tallenna kommentti"
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "%s merkkiä jäljellä"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "%s merkkiä jäljellä"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr "peruuta"
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "Oletko varma, ettet halua julkaista tätä kommenttia?"
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "poista kommentti"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "oletko varma, että haluat poistaa tämän kommentin?"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "Kirjoita tähän kysymyksen otsikko (>10 merkkiä)"
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "Tagi \"<span></span>\" yhteensopivuus:"
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "ja %s tässä näkymätöntä lisää..."
@@ -230,114 +166,179 @@ msgid_plural "Delete these notifications?"
msgstr[0] "Haluatko poistaa tämän huomautuksen?"
msgstr[1] "Haluatko poistaa nämä huomautukset?"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "poista kommentti"
+msgstr[1] "poista kommentti"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "poista kommentti"
+msgstr[1] "poista kommentti"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
-msgstr "Ole hyvä ja <a href=\"%(signin_url)s\">kirjaudu sisään</a> seurataksesi käyttäjää %(username)s"
+msgstr ""
+"Ole hyvä ja <a href=\"%(signin_url)s\">kirjaudu sisään</a> seurataksesi "
+"käyttäjää %(username)s"
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "lopeta %s:n seuraaminen"
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "seurataan %s"
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "seuraa %s"
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "sulje klikkaamalla"
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "muokkaa kommenttia klikkaamalla"
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "muokkaa"
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr "katso kysymyksiä, jotka on merkitty tagillä '%s'"
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "lihavoitu"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "kursivoitu"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "linkki"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "lainaus"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "esimuotoiltu teksti"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "kuva"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr "liite"
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "numeroitu lista"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "lista ranskalaisilla viivoilla"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "otsikko"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "vaakasuora palkki"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "peruuta"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "tee uudelleen"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
-msgstr "Anna kuvan URL-osoite, esim. http://www.example.com/image.jpg \"kuvan otsikko\""
+msgstr ""
+"Anna kuvan URL-osoite, esim. http://www.example.com/image.jpg \"kuvan otsikko"
+"\""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr "Anna URL-osoite, esim. http://www.example.com \"sivun otsikko\""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "Valitse ja lataa tiedosto:"
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr "kuvaus"
+#~ msgid "tags cannot be empty"
+#~ msgstr "anna vähintään yksi tagi"
+
+#~ msgid "content cannot be empty"
+#~ msgstr "ei voi jättää tyhjäksi"
+
+#~ msgid "%s content minchars"
+#~ msgstr "syötä vähintään %s merkkiä"
+
+#~ msgid "please enter title"
+#~ msgstr "ole hyvä ja kirjoita otsikko"
+
+#~ msgid "%s title minchars"
+#~ msgstr "syötä vähintään %s merkkiä"
+
+#~ msgid "Follow"
+#~ msgstr "Seuraa"
+
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] "%s seuraaja"
+#~ msgstr[1] "%s seuraajaa"
+
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr ""
+#~ "<div>Seurataan</div><div class=\"unfollow\">Lopeta seuraaminen</div>"
+
+#~ msgid "undelete"
+#~ msgstr "peru poistaminen"
+
+#~ msgid "delete"
+#~ msgstr "poista"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "%s merkkiä jäljellä"
+
+#~ msgid "%s characters left"
+#~ msgstr "%s merkkiä jäljellä"
+
+#~ msgid "cancel"
+#~ msgstr "peruuta"
+
+#~ msgid "confirm abandon comment"
+#~ msgstr "Oletko varma, ettet halua julkaista tätä kommenttia?"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "oletko varma, että haluat poistaa tämän kommentin?"
+
+#~ msgid "click to edit this comment"
+#~ msgstr "muokkaa kommenttia klikkaamalla"
+
+#~ msgid "edit"
+#~ msgstr "muokkaa"
+
+#~ msgid "see questions tagged '%s'"
+#~ msgstr "katso kysymyksiä, jotka on merkitty tagillä '%s'"
+
+#~ msgid "image description"
+#~ msgstr "kuvaus"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr "tiedostonimi"
+#~ msgid "file name"
+#~ msgstr "tiedostonimi"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr "linkin teksti"
+#~ msgid "link text"
+#~ msgstr "linkin teksti"
diff --git a/askbot/locale/fr/LC_MESSAGES/django.po b/askbot/locale/fr/LC_MESSAGES/django.po
index ff795c67..f33e37f4 100644
--- a/askbot/locale/fr/LC_MESSAGES/django.po
+++ b/askbot/locale/fr/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:54-0500\n"
"PO-Revision-Date: 2010-08-25 19:15+0100\n"
"Last-Translator: - <->\n"
"Language-Team: FrenchTranslationTeam <toto@toto.com>\n"
@@ -25,16 +25,16 @@ msgstr ""
"Désolé, mais les utilisateurs anonymes ne peuvent pas accéder à cette "
"fonction"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr " - "
-#: feed.py:26
+#: feed.py:28
#, fuzzy
msgid "Individual question feed"
msgstr "questions sélectionnées individuellement"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "dernières questions"
@@ -63,24 +63,33 @@ msgstr "titre"
msgid "please enter a descriptive title for your question"
msgstr "Veuillez saisir un titre descriptif pour votre question."
-#: forms.py:111
+#: forms.py:113
#, fuzzy, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "le titre doit comporter plus de 10 caractères."
msgstr[1] "le titre doit comporter plus de 10 caractères."
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "contenu"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "Mots-clés (tags)"
-#: forms.py:168
+#: forms.py:188
#, fuzzy, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -97,40 +106,40 @@ msgstr[1] ""
"doivent être courts, et ne pas comporter d'espaces. Vous pouvez utiliser "
"jusqu'à 5 mots-clés."
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "Les mots-clés sont obligatoires."
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "Veuillez utiliser %(tag_count)d mot-clé, ou moins"
msgstr[1] "Veuillez utiliser %(tag_count)d mots-clés, ou moins"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:227
+#: forms.py:249
#, 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] "Chaque mot-clé doit comporter moins de %(max_chars)d caractère"
msgstr[1] "Chaque mot-clé doit comporter moins de %(max_chars)d caractères"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "utiliser-ces-caracteres-dans-les-mots-cles"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
"wiki communautaire (le karma n'est pas mis à jour & peu de personnes peuvent "
"éditer la question"
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -138,11 +147,11 @@ msgstr ""
"Si vous choisissez l'option \"Wiki communautaire\" , questions et réponses "
"ne génèrent pas de points, et le nom de l'auteur ne sera pas affiché."
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "Résumé des modifications:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -150,62 +159,62 @@ msgstr ""
"Saisissez un bref résumé à propos de la révision (par exemple : correction "
"orthographique, amélioration du style, ce champ est optionnel)"
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Saisissez le nombre de points à ajouter ou retirer"
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "approuvée"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "consultée"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "suspendu"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "bloquée"
-#: forms.py:383
+#: forms.py:405
#, fuzzy
msgid "administrator"
msgstr "Administrateur du site"
# FIXME
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "moderateur"
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr "Modifier le statut en "
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "laquelle ?"
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr "Impossible de changer son propre statut"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "Impossible de convertir un autre utilisateur en modérateur"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "Impossible de changer le statut d'un autre modérateur"
-#: forms.py:471
+#: forms.py:493
#, fuzzy
msgid "Cannot change status to admin"
msgstr "Impossible de changer son propre statut"
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -214,257 +223,276 @@ msgstr ""
"Si vous souhaitez changer le statut de %(username)s, effectuez une "
"selection pertinente."
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Sujet"
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "Corps du message"
-#: forms.py:579
+#: forms.py:530
#, fuzzy
msgid "Your name (optional):"
msgstr "Votre nom:"
-#: forms.py:580
+#: forms.py:531
#, fuzzy
msgid "Email:"
msgstr "email"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "Votre message:"
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr "être anonyme"
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:923
-#, fuzzy
-msgid "this email will be linked to gravatar"
-msgstr "Cet email ne doit pas être lié à Gravatar"
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Nom réel"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "Site web"
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr ""
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr ""
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Date de naissance"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
"ne sera pas affichée; utilisée pour calculer votre âge. Format: AAAA-MM-"
"JJPar exemple: 1980-12-25 pour le 25 décembre 1980"
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "Profil"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Pseudo"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "Cet email a déjà été enregistré; merci d'utiliser une autre adresse"
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Choisissez un tag pour filtrer les emails"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "Mes questions"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "Questions auxquelles j'ai répondu"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Sélectionnées individuellement"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Forum entier (filtré par tag)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Commentaires et messages me mentionnant"
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "Veuillez choisir une des options ci-dessus"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "D'accord, j'essaye !"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "pas d'emails s'il vous plait, merci"
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "Veuillez choisir une des options ci-dessus"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
-#: urls.py:52
+#: urls.py:41
msgid "about/"
msgstr "apropos/"
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr "faq/"
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "vieprivee/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "reponses/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "modifier/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "revisions/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+msgid "questions"
+msgstr "questions"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "questions/"
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "question/"
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr "requalification/"
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "fermer/"
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "reouvrir/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "repondre/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "voter/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "mots-cles/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr ""
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "utilisateurs/"
-#: urls.py:214
+#: urls.py:219
#, fuzzy
msgid "subscriptions/"
msgstr "Abonnements aux emails"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "Badges/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "messages/"
# FIXME
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "marques-pour-lecture/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "envoyer-sur-le-serveur/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "retour/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "question/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "compte/"
@@ -597,150 +625,155 @@ msgid ""
msgstr ""
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Paramétrage des emails, et des alertes par email."
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Nombre maximum de nouvelles dans une alerte par email"
-#: conf/email.py:48
+#: conf/email.py:57
#, fuzzy
msgid "Default notification frequency all questions"
msgstr ""
"Fréquence par défaut pour l'envoi des mails de notification de nouvelles"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
#, fuzzy
msgid "Default notification frequency questions asked by the user"
msgstr ""
"Fréquence par défaut pour l'envoi des mails de notification de nouvelles"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
#, fuzzy
msgid "Default notification frequency questions answered by the user"
msgstr ""
"Fréquence par défaut pour l'envoi des mails de notification de nouvelles"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
#, fuzzy
msgid "Send periodic reminders about unanswered questions"
msgstr "Il n'y a aucune question sans réponse"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
#, fuzzy
msgid "Days before starting to send reminders about unanswered questions"
msgstr "Il n'y a aucune question sans réponse"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
#, fuzzy
msgid "Max. number of reminders to send about unanswered questions"
msgstr "Cliquez ici pour voir les questions ayant obtenu le plus de votes"
-#: conf/email.py:168
+#: conf/email.py:177
#, fuzzy
msgid "Send periodic reminders to accept the best answer"
msgstr "Il n'y a aucune question sans réponse"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
#, fuzzy
msgid "Days before starting to send reminders to accept an answer"
msgstr "Il n'y a aucune question sans réponse"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
#, fuzzy
msgid "Max. number of reminders to send to accept the best answer"
msgstr "Cliquez ici pour voir les questions ayant obtenu le plus de votes"
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
"Nous devons valider votre adresse email avant que vous ne puissiez publier "
"des messages"
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
"Nous vérifions que l'adresse email est active en y envoyant un email "
"contenant une clé de vérification."
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr "N'autoriser qu'un compte par adresse email"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr "Faux email pour utilisateur anonyme"
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
"Utilisez ce paramétrage pour contrôler Gravatar (pour les utilisateurs sans "
"adresse email)"
-#: conf/email.py:247
+#: conf/email.py:256
#, fuzzy
msgid "Allow posting questions by email"
msgstr ""
@@ -752,22 +785,48 @@ msgstr ""
"des fonctionnalités de notre module de questions/réponses, qui repose sur un "
"principe communautaire."
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr ""
+"<span class=\"strong big\">Formulez votre question à l'aide du formulaire ci-"
+"dessous (un court titre résumant la question, puis la question à proprement "
+"parler, aussi détaillée que vous le souhaitez...)</span>. A l'étape "
+"suivante, vous devrez saisir votre email et votre nom (ou un pseudo si vous "
+"souhaitez rester anonyme...). Ces éléments sont nécessaires pour bénéficier "
+"des fonctionnalités de notre module de questions/réponses, qui repose sur un "
+"principe communautaire."
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -804,15 +863,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr "Clé publique Recaptcha"
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr "Clé privée Recaptcha"
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, fuzzy, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -825,11 +884,11 @@ msgstr ""
"connecter à votre site pour y publier automatiquement et massivement des "
"messages publicitaires."
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr "Clé d'API publique FACEBOOK"
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, fuzzy, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -841,71 +900,54 @@ msgstr ""
"Vous pouvez obtenir ces clés sur le site <a href=\"http://www.facebook.com/"
"developers/createapp.php\">facebook create app</a>"
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Clé secrète FACEBOOK"
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-#, fuzzy
-msgid "Explain how to change LDAP password"
-msgstr "Explique comment changer le mot de passe LDAP"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "Pages \"à propos\", \"vie privée\", etc."
@@ -959,11 +1001,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr "Paramétrage de l'affichage et de la saisie de données"
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -1031,111 +1075,169 @@ msgstr "Taille maximale d'un mot-clé (tag), en nombre de caractères"
msgid "Minimum length of answer body (number of characters)"
msgstr "Taille maximale d'un mot-clé (tag), en nombre de caractères"
-# FXME ou "offensive" ?
#: conf/forum_data_rules.py:126
#, fuzzy
+msgid "Are tags required?"
+msgstr "Les mots-clés sont obligatoires."
+
+# FXME ou "offensive" ?
+#: conf/forum_data_rules.py:135
+#, fuzzy
msgid "Mandatory tags"
msgstr "Mots-clés"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
#, fuzzy
msgid "Use wildcard tags"
msgstr "Tags associés"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "Nombre maximal de mots-clés (tags) par question"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr "Nombre de questions par défaut à afficher dans la liste "
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "Que signifie \"questions sans réponses\" ?"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Tags de la question"
+
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "Profil utilisateur"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1211,16 +1313,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1389,6 +1491,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
#, fuzzy
msgid "Karma loss and gain rules"
@@ -1603,32 +1709,32 @@ msgstr "Insérez ici la description du site, destinée aux moteurs de recherche"
msgid "Short name for your Q&A forum"
msgstr "Insérez ici le nom court de votre forum de Questions/Réponses"
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
"BaseURL de votre forum de Questions/Réponses (doit commencer par http ou "
"https)"
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
#, fuzzy
msgid "Check to enable greeting for anonymous user"
msgstr "Faux email pour utilisateur anonyme"
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
#, fuzzy
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
"Lien inséré dans le message d'accueil affiché aux utilisateurs anonymes"
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "URL permettant de faire des remarques"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr "si laissé vide, un formulaire de retour simple sera utilisé à la place"
@@ -1756,21 +1862,21 @@ msgstr ""
"Pour changer le logo, sélectionnez un nouveau fichier, puis soumettez le "
"formulaire complet."
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1778,23 +1884,23 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
"Afficher toutes les fonctionnalités de l'interface utilisateur à tous les "
"utilisateurs"
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
msgid ""
"If checked, all forum functions will be shown to users, regardless of their "
"reputation. However to use those functions, moderation rules, reputation and "
@@ -1805,19 +1911,19 @@ msgstr ""
"pour utiliser ces fonctions, les règles de modération, le concept de "
"réputation et les autres limites s'appliqueront toujours..."
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr "Sélectionnez un thème (skin)"
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1829,11 +1935,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1842,21 +1948,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1865,21 +1971,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1888,19 +1994,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1911,19 +2017,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr "Numéro de révision du thème"
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1991,17 +2097,22 @@ msgstr "Autres services"
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
#, fuzzy
msgid "User settings"
msgstr "FIXME - User policy settings"
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
"Autoriser la modification du pseudo (nom d'utilisateur affiché à l'écran)"
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "N'autoriser qu'un compte par adresse email"
+
+#: conf/user_settings.py:41
#, fuzzy
msgid "Allow account recovery by email"
msgstr ""
@@ -2013,26 +2124,52 @@ msgstr ""
"des fonctionnalités de notre module de questions/réponses, qui repose sur un "
"principe communautaire."
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr "Taille minimale du pseudo (nom d'utilisateur affiché à l'écran)"
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+#, fuzzy
+msgid "Default avatar for users"
+msgstr "Valeur par défaut: %s"
+
+#: conf/user_settings.py:70
+#, fuzzy
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+"Pour changer le logo, sélectionnez un nouveau fichier, puis soumettez le "
+"formulaire complet."
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
#, fuzzy
msgid "Name for the Anonymous user"
msgstr "Faux email pour utilisateur anonyme"
@@ -2154,357 +2291,370 @@ msgstr "Spam ou publicité"
msgid "too localized"
msgstr "trop spécifique à un lieu"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "date (↓)"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "date (↑)"
# TODO demander au développeur de faire 2 entrées distinctes. Une contiendra "date (↑)" et l'autre "date"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "actualité (↓)"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "actualité (↑)"
# FIXME
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "nb de réponses (↓)"
# FIXME ou "bcp de réponses"
# FIXME
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "nb de réponses (↑)"
# FIXME ou "peu de réponses"
# FIXME
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "popularité (↓)"
# FIXME ou "bcp de votes"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "popularité (↑)"
# FIXME ou "peu de votes"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "pertinence"
# FIXME
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "toutes"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "ouvertes"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "favorite"
-#: const/__init__.py:64
+#: const/__init__.py:70
#, fuzzy
msgid "list"
msgstr "Liste des tags"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "Cette question n'a pas de réponse"
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "Cette question n'a pas de réponse acceptée"
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr "a posé une question"
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr "a répondu à une question"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "question commentée"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "réponse commentée"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "question modifiée"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "réponse modifiée"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "récompense obtenue"
# FIXME ou "ayant reçu une récompense"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "marquée comme meilleure réponse"
# FIXME ou "élue meilleure réponse"
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "notée positivement"
# FIXME ou "ayant reçu un vote positif"
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "notée négativement"
# FIXME ou "ayant reçu un vote négatif"
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "vote annulé"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "question supprimée"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "réponse supprimée"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "signalée comme ayant un \"contenu abusif\""
# FXME ou "offensive" ?
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "Mots-clés"
# FIXME ou "marqueurs sémantiques mis à jour ?"
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "sélectionnée comme \"favorite\""
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "profil utilisateur entièrement renseigné"
# FIXME
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "Mise à jour d'email envoyée à l'utilisateur"
-#: const/__init__.py:142
+#: const/__init__.py:145
#, fuzzy
msgid "reminder about unanswered questions sent"
msgstr "Voir les questions sans réponses"
# FIXME ou "ayant reçu une récompense"
-#: const/__init__.py:146
+#: const/__init__.py:149
#, fuzzy
msgid "reminder about accepting the best answer sent"
msgstr "Gain pour accepter une meilleure réponse"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "mentionné dans le message"
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "question_repondue"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "question_commentee"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr "reponse_commentee"
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr "reponse_acceptee"
+#, fuzzy
+msgid "answered question"
+msgstr "a répondu à une question"
-#: const/__init__.py:206
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "réponse modifiée"
+
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[close]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[supprimée]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "version initiale"
# FIXME
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "dont les mots-clés ont été révisés"
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr "désactivé"
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "exclure ceux ignorés"
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr "seulement ceux sélectionnés"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "instantanément"
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "quotidien"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "hebdomadaire"
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "Aucun email"
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
#, fuzzy
msgid "mystery-man"
msgstr "hier"
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
#, fuzzy
msgid "wavatar"
msgstr "Qu'est ce que 'Gravatar' ?"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "or"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "argent"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "bronze"
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
#, fuzzy
msgid "Gravatar"
msgstr "Qu'est ce que 'Gravatar' ?"
-#: const/__init__.py:300
+#: const/__init__.py:303
#, fuzzy
msgid "Uploaded Avatar"
msgstr "Qu'est ce que 'Gravatar' ?"
-#: const/message_keys.py:15
+#: const/message_keys.py:21
#, fuzzy
msgid "most relevant questions"
msgstr "Merci de poser une question pertinente."
-#: const/message_keys.py:16
+#: const/message_keys.py:22
#, fuzzy
msgid "click to see most relevant questions"
msgstr "Cliquez ici pour voir les questions ayant obtenu le plus de votes"
# FIXME ou "peu de votes"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "par pertinence"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "Cliquez ici pour voir les questions les moins récentes"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "par date"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "Cliquez ici pour voir les questions les plus récentes"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "Cliquez ici pour voir les questions mises à jour le moins récemment"
# TODO demander au développeur de faire 2 entrées distinctes. Une contiendra "date (↑)" et l'autre "date"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "par activité"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "Cliquez ici pour voir les questions mises à jour le plus récemment"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
#, fuzzy
msgid "click to see the least answered questions"
msgstr "Cliquez ici pour voir les questions les moins récentes"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "par réponses"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
#, fuzzy
msgid "click to see the most answered questions"
msgstr "Cliquez ici pour voir les questions ayant obtenu le plus de votes"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "Cliquez ici pour voir les questions ayant obtenu le moins de votes"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "par votes"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "Cliquez ici pour voir les questions ayant obtenu le plus de votes"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr "Les i-names ne sont pas supportés."
@@ -2559,11 +2709,12 @@ msgid "Your user name (<i>required</i>)"
msgstr "Votre nom d'utilisateur (<i>obligatoire</i>)"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Nom d'utilisateur incorrect."
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "désolé, aucun utilisateur ne porte ce nom"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "connexion/"
@@ -2603,7 +2754,7 @@ msgid "%(site)s user name and password"
msgstr "Veuillez saisir votre nom d'utilisateur et un mot de passe"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2694,68 +2845,68 @@ msgstr "Veuillez saisir votre nom d'utilisateur et un mot de passe"
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "L'OpenID %(openid_url)s est invalide"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
#, fuzzy
msgid "Your new password saved"
msgstr "Votre mot de passe a été mis à jour."
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
#, fuzzy
msgid "Oops, sorry - there was some error - please try again"
msgstr "désolé, les 2 mots de passe sont différents, veuillez recommencer"
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
@@ -2763,12 +2914,12 @@ msgstr ""
"id='validate_email_alert' href='%(details_url)s'>Cliquez ici</a> pour en "
"savoir plus."
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, fuzzy, python-format
msgid "Recover your %(site)s account"
msgstr "Changer le mot de passe de votre compte"
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2776,28 +2927,28 @@ msgstr ""
msgid "Site"
msgstr "Site"
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "Paramétrage de la base de données"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Valeur par défaut: \"\""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Valeur par défaut: "
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Valeur par défaut: %s"
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr "Les types de fichiers image autorisés sont %(types)s"
@@ -2813,7 +2964,7 @@ msgstr "Documentation"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Changer de mot de passe"
@@ -2875,133 +3026,54 @@ msgstr "Tout déplier"
msgid "Congratulations, you are now an Administrator"
msgstr "Félicitations, vous êtes maintenant administrateur"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
#, fuzzy
msgid "Please accept the best answer for this question:"
msgstr "Soyez le premier à répondre à cette quesion !"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
#, fuzzy
msgid "Please accept the best answer for these questions:"
msgstr "Cliquez ici pour voir les questions les moins récentes"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
msgstr[1] ""
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
-"<p>Bonjour %(name)s,</p></p>Il y a du nouveau concernant %(num)d question:</"
-"p>"
msgstr[1] ""
-"<p>Bonjour %(name)s,</p><p>Il y a du nouveau concernant %(num)d questions:</"
-"p>"
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "nouvelle question"
-#: 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 ""
-"Merci de visiter notre forum de Questions/Réponses pour découvrir les "
-"nouvelles questions. Passez le mot autour de vous si vous connaissez "
-"quelqu'un susceptible de nous aider en répondant à certaines questions, ou "
-"qui pourrait bénéficier de notre forum en y postant ses propres questions..."
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-"FIXME - Dans vos derniers paramétrages, vous avez opté pour recevoir des "
-"mails quotidiennement. Si vous recevez plus d'un email par jour, merci "
-"d'avertir l'administrateur du forum de ce problème. "
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-"FIXME - Dans vos derniers paramétrages, vous avez opté pour recevoir des "
-"mails de façon hebdomadaire. Si vous recevez plus d'un email par semaine, "
-"merci d'avertir l'administrateur du forum de ce problème. "
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-"Il est possible que vous receviez des liens plusieurs fois; nous sommes en "
-"train de plancher sur ce problème"
-
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-"Allez à l'adresse %(email_settings_link)s pour changer la fréquence des "
-"emails de mises à jour, ou bien informez l'administrateur à l'adresse "
-"%(admin_email)s"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -3013,7 +3085,7 @@ msgstr[1] ""
msgid "Please log in to use %s"
msgstr "Bitte einloggen"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
@@ -3021,7 +3093,7 @@ msgstr ""
"Désolé, vous ne pouvez pas accepter ou refuser les meilleures réponses car "
"votre compte est bloqué"
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
@@ -3029,7 +3101,7 @@ msgstr ""
"Désolé, vous ne pouvez pas accepter ou refuser les meilleures réponses car "
"votre compte est suspendu"
-#: models/__init__.py:334
+#: models/__init__.py:337
#, fuzzy, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
@@ -3038,13 +3110,13 @@ msgstr ""
"Désolé, vous ne pouvez pas accepter ou rejeter votre propre réponse à votre "
"propre question !"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, fuzzy, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
@@ -3053,54 +3125,44 @@ msgstr ""
"Désolé, seul l'auteur d'origine de la question - %(username)s - peut "
"accepter/désigner la meilleure réponse"
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "Il est interdit de voter pour ses propores publications"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "Désolé, votre compte semble être bloqué"
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "Désolé, votre compte semble être suspendu"
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ">%(points)s points sont requis pour pouvoir voter positivement"
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ">%(points)s points sont requis pour pouvoir voter négativement"
-#: models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "Désolé, les utilisateurs bloqués ne peuvent pas transférer de fichier"
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
"Désolé, les utilisateurs suspendus ne peuvent pas transférer de fichier"
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"Le transfert d'images vers notre serveur est réservé aux utilisateurs ayant "
-"plus de >%(min_rep)s points de réputation"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr "Les utilisateurs bloques ne peuvent pas publier"
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr "Les utilisateurs suspendus ne peuvent pas publier"
-
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3111,7 +3173,7 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
#, fuzzy
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
@@ -3119,14 +3181,14 @@ msgstr ""
"et les modérateurs peuvent requalifier des questions supprimées (c'est à "
"dire modifier leurs mots-clés)"
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
"Désolé, vous ne pouvez commenter que vos propres publications, car votre "
"compte est suspendu"
-#: models/__init__.py:510
+#: models/__init__.py:523
#, python-format
msgid ""
"Sorry, to comment any post a minimum reputation of %(min_rep)s points is "
@@ -3136,7 +3198,7 @@ msgstr ""
"réputation est requis. Vous pouvez toutefois commenter vos propres "
"publications et répondre à vos questions"
-#: models/__init__.py:538
+#: models/__init__.py:553
#, fuzzy
msgid ""
"This post has been deleted and can be seen only by post owners, site "
@@ -3145,7 +3207,7 @@ msgstr ""
"Ce message a été supprimé et peut seulement être consulté par ses "
"propriétaires, les administrateurs du site, et les modérateurs"
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
@@ -3153,18 +3215,18 @@ msgstr ""
"Désolé, seuls les modérateurs, les administrateurs du site et les "
"propriétaires des messages peuvent modifier les messages supprimés"
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
"Désolé, vous ne pouvez pas modifier de messages, car votre compte est bloqué"
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
"Désolé, vous ne pouvez modifier que vos propres messages, car votre compte "
"est suspendu"
-#: models/__init__.py:579
+#: models/__init__.py:594
#, fuzzy, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
@@ -3172,7 +3234,7 @@ msgstr ""
"Désolé, pour modifier les messages du wiki, un minimum de %(min_rep)s points "
"de réputation est requis"
-#: models/__init__.py:586
+#: models/__init__.py:601
#, fuzzy, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
@@ -3181,7 +3243,7 @@ msgstr ""
"Désolé, pour éditer les messages des autres utilisateurs, un minimum de "
"%(min_rep)s points de réputation est requis"
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3195,19 +3257,19 @@ msgstr[1] ""
"Désolé, impossible de supprimer votre question car elle a obtenu des votes "
"positifs de la part d'autres utilisateurs"
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
"Désolé, vous ne pouvez pas supprimer de messages car votre compte est bloqué"
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
"Désolé, vous pouvez seulement supprimer vos propres messages car votre "
"compte est suspendu"
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
@@ -3216,18 +3278,18 @@ msgstr ""
"Désolé, pour supprimer les messages des autres utilisateurs, un minimum de "
"%(min_rep)s points de réputation est requis"
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
"Désolé, vous ne pouvez pas cloturer de questions car votre compte est bloqué"
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
"Désolé, vous ne pouvez pas cloturer de questions car votre compte est "
"suspendu"
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
@@ -3236,7 +3298,7 @@ msgstr ""
"Désolé, pour cloturer les messages des autres utilisateurs, un minimum de "
"%(min_rep)s points de réputation est requis"
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
@@ -3244,7 +3306,7 @@ msgstr ""
"Désolé, pour clore vos propres questions, un minimum de %(min_rep)s points "
"de réputation est requis"
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
@@ -3254,7 +3316,7 @@ msgstr ""
"messages avec plus de %(min_rep)s points de réputation peuvent réouvrir des "
"questions."
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
@@ -3262,65 +3324,70 @@ msgstr ""
"Désolé, pour réouvrir vos propres questions, un minimum de %(min_rep)s "
"points de réputation est requis"
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "Un message ne peut pas être étiqueté \"abusif\" deux fois"
-
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
-msgstr "Les utilisateurs bloqués ne peuvent pas étiqueter les messages"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
+msgstr ""
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
-msgstr "Les utilisateurs suspendus ne peuvent pas étiqueter les messages"
+#: models/__init__.py:783
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr ""
+"Désolé, vous ne pouvez pas supprimer de messages car votre compte est bloqué"
-#: models/__init__.py:768
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
msgstr ""
-"Il faut au moins %(min_rep)s points de réputation pour pouvoir étiqueter les "
-"messages comme étant du spam"
+"Désolé, pour requalifier une question (c'est à dire changer ses mots-clés), "
+"un minimum de %(min_rep)s points de réputation est requis"
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "%(max_flags_per_day)s dépassé"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
-msgstr "Les utilisateurs bloqués ne peuvent pas étiqueter les messages"
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr ""
+"Désolé, vous ne pouvez pas supprimer de messages car votre compte est bloqué"
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
-msgstr "Les utilisateurs suspendus ne peuvent pas étiqueter les messages"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
+#: models/__init__.py:843
#, fuzzy, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
-"Il faut au moins %(min_rep)s points de réputation pour pouvoir étiqueter les "
-"messages comme étant du spam"
+"Désolé, pour requalifier une question (c'est à dire changer ses mots-clés), "
+"un minimum de %(min_rep)s points de réputation est requis"
msgstr[1] ""
-"Il faut au moins %(min_rep)s points de réputation pour pouvoir étiqueter les "
-"messages comme étant du spam"
+"Désolé, pour requalifier une question (c'est à dire changer ses mots-clés), "
+"un minimum de %(min_rep)s points de réputation est requis"
-#: models/__init__.py:828
+#: models/__init__.py:862
#, fuzzy
msgid "you don't have the permission to remove all flags"
msgstr "Vous n'avez pas la permission de modifier ces valeurs"
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
@@ -3329,20 +3396,20 @@ msgstr ""
"et les modérateurs peuvent requalifier des questions supprimées (c'est à "
"dire modifier leurs mots-clés)"
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
"Désolé, vous ne pouvez pas requalifier une question (c'est à dire changer "
"ses mots-clés) car votre compte est bloqué"
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
"Désolé, vous pouvez seulement requalifier vos propres questions (c'est à "
"dire changer leurs mots-clés) car votre compte est suspendu"
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
@@ -3350,147 +3417,146 @@ msgstr ""
"Désolé, pour requalifier une question (c'est à dire changer ses mots-clés), "
"un minimum de %(min_rep)s points de réputation est requis"
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
"Désolé, vous ne pouvez pas supprimer de commentaires car votre compte est "
"bloqué"
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
"Désolé, vous pouvez seulement supprimer vos propres commentaires car votre "
"compte est suspendu"
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
"Désolé, pour supprimer des commentaires, un minimum de %(min_rep)s points de "
"réputation est requis"
-# FIXME ou "ayant reçu un vote négatif"
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "impossible de révoquer un ancien vote"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "le %(date)s"
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, fuzzy, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "il y a %(hr)d heure"
msgstr[1] "il y a %(hr)d heures"
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, fuzzy, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "il y a %(min)d minute"
msgstr[1] "il y a %(min)d minutes"
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
#, fuzzy
msgid "Anonymous"
msgstr "anonyme"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Administrateur du site"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Modérateur de forum"
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Utilisateur suspendu"
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Utilisateur bloqué"
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Utilisateur enregistré"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Utilisateurs suivis"
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Utilisateur certifié"
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, fuzzy, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "Votre karma est %(reputation)s"
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, fuzzy, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] "Badge argent - blah blah"
msgstr[1] "Badge argent - blah blah"
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, fuzzy, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "Badge bronze - blah blah"
msgstr[1] "Badge bronze - blah blah"
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "Tags de la question"
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -3499,7 +3565,7 @@ msgstr ""
"Félicitations, vous avez reçu un badge '%(badge_name)s'. Consultez <a href="
"\"%(user_profile)s\">votre profil</a>."
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3769,83 +3835,62 @@ msgstr "Taxonomiste"
msgid "Created a tag used by %(num)s questions"
msgstr "A créé un mot-clé (tag) utilisé par %(num)s questions"
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "Expert"
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "Très actif dans une catégorie de questions"
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "Désolé, cette question a été supprimée, et n'est plus accessible."
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
#, fuzzy
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "Désolé, cette question a été supprimée, et n'est plus accessible."
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr ""
-#: models/question.py:66
+#: models/question.py:57
#, fuzzy
msgid "\" and more"
msgstr "En savoir plus."
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s a modifié la question"
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr ""
-"Les utilisateurs %(people)s ont posté %(new_answer_count)s nouvelles réponses"
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s a/ont commenté cette question"
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s a/ont commenté des réponses"
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s a/ont commenté une réponse"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Valider l'email"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Modifié par un modérateur. Motif :</em> %(reason)s"
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
@@ -3854,7 +3899,7 @@ msgstr ""
"%(points)s points ont été accordés pour la contribution de %(username)s à la "
"question \"%(question_title)s\""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
@@ -3863,107 +3908,112 @@ msgstr ""
"%(points)s points ont été retirés pour la contribution de %(username)s' à la "
"question \"%(question_title)s\""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "intéressant"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "ignoré"
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "Forum entier"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Les questions que j'ai posées"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Les questions auxquelles j'ai répondu"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "questions sélectionnées individuellement"
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr "Mentions et réponses aux commentaires"
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Instantanément"
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Quotidien"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "hebdomadaire"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "Aucun email"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
#, fuzzy
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Veuillez saisir votre nom d'utilisateur et un mot de passe"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
#, fuzzy
msgid "(or select another login method above)"
msgstr "Merci de sélectionner une des options ci-dessus"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
#, fuzzy
msgid "Sign in"
msgstr "connexion/"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Changer d'email"
#: skins/common/templates/authopenid/changeemail.html:10
msgid "Save your email address"
msgstr "Sauvegarder votre adresse email"
-# FIXME
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
-msgstr "Informations concernant le changement d'email : %(email)s"
-
-# FIXME
-#: skins/common/templates/authopenid/changeemail.html:17
-#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
msgstr ""
-"voici pourquoi les emails sont obligatoires; pour plus d'infos, consultez la "
-"page %(gravatar_faq_url)s"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
+#: skins/common/templates/authopenid/changeemail.html:19
+#, python-format
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
msgstr ""
-"<strong>Votre nouvelle adresse email:</strong> (ne sera<strong>pas</strong> "
-"visible des autres utilisateurs; et doit être valide)"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-"<strong>Votre adresse email</strong> (ne sera<strong>pas</strong> visible "
-"des autres utilisateurs; et doit être valide)"
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "Sauvegarder l'email"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3971,143 +4021,113 @@ msgstr "Sauvegarder l'email"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Annuler"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "Valider l'email"
-# FIXME
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
msgstr ""
-"valider l'information %(email)s ou visitez la page : %(change_email_url)s"
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "Email inchangé"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
msgstr ""
-"ancien email %(email)s conservé; si vous souhaitez le changer rendez-vous à "
-"l'url %(change_email_url)s"
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "Adresse email modifiée."
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
msgstr ""
-"<span class='big strong'>Votre adresse email actuelle %(email)s peut être "
-"utilisée pour cela.</span>"
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "Adresse email vérifiée."
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
msgstr ""
-"<span class=\"big strong\">Merci d'avoir validé votre email.</span> Vous "
-"pouvez désormais <strong>poser des questions</strong> et <strong>répondre "
-"aux questions ouvertes</strong>. Vous pouvez également <strong>vous abonnez "
-"pour recevoir périodiquement par email des questions qui vous intéressent</"
-"strong>, ou être informé(e) des réponses et commentairesà vos questions."
-# FIXME
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "l'email comportant la clé de validation n'a pas été envoyé"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Valider l'email"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
-"<span class='big strong'>Ihre momentane E-Mail-Adresse %(email)s wurde "
-"bereits bestätigt</span>. Es wurde keine neue Bestätigungsmail versandt. Sie "
-"können Ihre E-Mail-Adresse bei Bedarf <a href='%(change_link)s'>ändern</a>."
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "S'inscrire"
-#: skins/common/templates/authopenid/complete.html:27
-#, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-"Créez vous un compte chez %(provider)s; pour plus d'infos, <a "
-"href='%(gravatar_faq_url)s'>cliquez ici</a>"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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 ""
-"L'utilisateur %(username)s existe déjà; veuillez choisir un autre nom pour \n"
-" %(provider)s. Un email est aussi obligatoire, "
-"cf. %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-"Informations concernant la création d'un nouveau compte chez un fournisseur "
-"d'identité externe %(provider)s; pour plus d'infos <a "
-"href='%(gravatar_faq_url)s'>cliquez ici</a>"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr ""
-"Informations concernant la création d'un nouveau compte Facebook pour se "
-"connecter; pour plus d'infos visitez la page %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr "Ce compte existe déjà; merci d'en utiliser un autre."
-
-# FIXME
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "Pseudo"
-
-# FIXME
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr "Adresse email"
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "S'inscrire"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "Merci de sélectionner une des options ci-dessus"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr ""
-"L'outil de filtrage des mots-clés sera affiché à droite de l'écran, une fos "
-"que vous serez authentifié"
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "Créer un compte"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "S'enregistrer"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -4132,9 +4152,10 @@ msgstr "Merci de vous authentifiez :"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr "L'administrateur du forum"
#: skins/common/templates/authopenid/email_validation.txt:1
@@ -4152,9 +4173,10 @@ msgstr ""
"validité de votre adresse email."
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
"Si vous pensez que ce message a été envoyé par erreur - \n"
@@ -4206,9 +4228,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -4242,139 +4264,99 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
+#: skins/common/templates/authopenid/signin.html:89
#, fuzzy
-msgid "Please enter your <span>user name and password</span>, then sign in"
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Veuillez saisir votre nom d'utilisateur et un mot de passe"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Merci de vous authentifiez :"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
#, fuzzy
msgid "Login or email"
msgstr "Aucun email"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Mot de passe"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Connexion"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "Nouveau mot de passe pris en compte."
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
#, fuzzy
msgid "Please, retype"
msgstr "Merci de resaisir votre mot de passe"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
#, fuzzy
msgid "provider"
msgstr "Utilisateur certifié"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "dernière connexion"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "Supprimer"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "Compte supprimé."
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "D'autres questions ?"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
#, fuzzy
msgid "recover your account via email"
msgstr "Changer le mot de passe de votre compte"
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
#, fuzzy
msgid "Recover your account via email"
msgstr "Changer le mot de passe de votre compte"
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr "Pourquoi utiliser OpenID ?"
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr "OpenID est le nouveau standard d’identification sur Internet."
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr ""
-"Le principe d'OpenID est simple : au lieu de créer un nouveau compte sur "
-"chaque nouveau site que vous visitez, vous créez UNE FOIS POUR TOUTES un "
-"compte \"OpenID\" chez le fournisseur de votre choix (Gmail, Yahoo, AOL, "
-"Orange...).Vous pourrez ensuite le réutiliser pour vous authentifier sur "
-"d'autres sites \"compatibles OpenID\", sans avoir besoin de remplir le "
-"formulaire d'inscription de ces sites..."
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-"OpenID à été adopté par tous les grands portails (Google, Yahoo, Facebook, "
-"Microsoft, Flicker, ...) ce qui porte le nombre de comptes OpenID à plus de "
-"300 millions. Plus de 10000 sites sont compatibles OpenID. "
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr "OpenId est basé sur un standard international et libre."
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "En savoir plus."
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr "Obtenir un compte OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "S'enregistrer"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
#, fuzzy
msgid "Please register by clicking on any of the icons below"
@@ -4390,10 +4372,19 @@ msgid "Create login name and password"
msgstr "Créer un nom d'utilisateur et un mot de passe"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
-msgstr "Informations sur la méthode classique de connexion"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
@@ -4401,15 +4392,11 @@ msgstr ""
"Merci de lire et saisir les deux mots ci-dessous pour nous aider à lutter "
"contre la création automatique de comptes (lutte contre le spam)."
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Créer un compte"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "ou"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "retourner à la page d'authentification OpenID"
@@ -4473,72 +4460,73 @@ msgstr ""
msgid "Delete These"
msgstr "réponse supprimée"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "lien permanent vers une réponse"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "Répondre à cette question"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "lien permanent"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "modifier"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "lien"
+
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "restaurer"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "remove all flags"
+msgid "remove offensive flag"
+msgstr "Voir les drapeaux signalant des messages à contenu abusif"
+
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+#, fuzzy
+msgid "remove flag"
msgstr "Voir tous les mots-clés"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
"Signaler un abus (par exemple : spam, publicité déguisée, contenus illégaux "
"ou inappropriés, propos déplacés)"
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "Marquer comme 'contenu abusif'"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-#, fuzzy
-msgid "remove flag"
-msgstr "Voir tous les mots-clés"
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "restaurer"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "modifier"
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Répondre à cette question"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "Cette réponse a été sélectionnée comme correct"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
#, fuzzy
msgid "mark this answer as correct (click again to undo)"
msgstr "marquer cette réponse comme favorite (cliquez à nouveau pour annuler)"
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "%(question_author)s a choisi cette réponse comme correcte"
-
#: skins/common/templates/question/closed_question_info.html:2
#, fuzzy, python-format
msgid ""
@@ -4553,63 +4541,71 @@ msgstr ""
msgid "close date %(closed_at)s"
msgstr "Date de cloture : %(closed_at)s"
-# FIXME
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr "requalifier"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "réouvrir"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "fermer"
-#: skins/common/templates/widgets/edit_post.html:21
+# FIXME
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr "requalifier"
+
+#: skins/common/templates/widgets/edit_post.html:22
#, fuzzy
-msgid "one of these is required"
+msgid ", one of these is required"
msgstr "ce champ est obligatoire"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "Mots-clés (tags)"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(obligatoire)"
# FIXME
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Basculer vers l'aperçu avec éditeur temps-réel"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "Masquer l'aperçu"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Tags associés"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr "Tags intéressants"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
#, fuzzy
msgid "add"
msgstr "Ajouter"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "Tags ignorés"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr "Filtre des tags"
@@ -4662,7 +4658,7 @@ msgid "back to previous page"
msgstr "retour à la page précédente"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr "Voir toutes les questions"
@@ -4695,11 +4691,6 @@ msgstr "Voir les dernières questions"
msgid "see tags"
msgstr "Voir les mots-clés (tags)"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr "A propos de %(site_name)s"
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4729,17 +4720,20 @@ msgstr "Enregistrer les modifications"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "Afficher l'aperçu"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "Poser une question"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "Poser votre question"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr "%(name)s"
@@ -4754,8 +4748,8 @@ msgid "Badge \"%(name)s\""
msgstr "Badge \"%(name)s\""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, python-format
msgid "%(description)s"
msgstr "%(description)s"
@@ -4766,11 +4760,7 @@ msgid_plural "users received this badge:"
msgstr[0] "l'utilisateur a reçu ces badges:"
msgstr[1] "les utilisateurs ont reçu ces badges:"
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Résumé badges"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "Badges"
@@ -4781,45 +4771,47 @@ msgstr ""
"distribuant des badges."
#: skins/default/templates/badges.html:8
-#, python-format
+#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"Ci-dessous figure la liste des badges disponibles et le nombre de vois "
"qu'ils ont été attribués. Vous pouvez nous dire ce que vous en pensez sur "
"%(feedback_faq_url)s.\n"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Badges de la communauté"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr "Badge or - blah blah"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
-msgstr "Badge argent - blah blah"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
+msgstr ""
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "Badge bronze - blah blah"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "Badge bronze - blah blah"
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Question close"
@@ -4836,11 +4828,10 @@ msgstr "Raisons"
msgid "OK to close"
msgstr "OK pour clore"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4861,15 +4852,17 @@ msgstr ""
"<strong>significatives</strong> pour cette communauté."
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Avant de poser une question, merci d'utiliser notre moteur de recherche afin "
"de vérifier qu'elle n'a pas déjà été posée par quelqu'un d'autre"
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "Quelles questions dois-je éviter de poser ?"
#: skins/default/templates/faq_static.html:11
@@ -4886,14 +4879,11 @@ msgstr "Que dois-je éviter dans mes réponses ?"
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
-"est un site de questions/réponses, et non pas un forum de discussion. Par "
-"conséquent, merci de ne pas discuter ou polémiquer dans vos réponses. Vous "
-"avez toutefois la possibilité de faire de brèves discussions dans le champ "
-"COMMENTAIRES."
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4908,24 +4898,26 @@ msgid "This website is moderated by the users."
msgstr "Ce site est modéré par ses utilisateurs."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"Le système de réputation permet aux utilisateurs d'accumuler des points, qui "
"les autorisent ensuite à accéder à divers niveaux et tâches de modération"
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "Comment fonctionne le système de réputation ?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
msgstr ""
-"Quand une question ou une réponse est jugée positivement par le reste de la "
-"communauté, son auteur acquiert des points. Ces points lui permettent de "
-"\"monter en grade\" et obtenir un pouvoir grandissant en terme de "
-"possibilités de modérations. "
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -4955,73 +4947,69 @@ msgstr ""
msgid "upvote"
msgstr "vote positif"
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr "utiliser les mots-clés (tags)"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "ajouter des commentaires"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "vote négatif"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "Erste Antwort auf eine eigene Frage akzeptiert"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "ouvrir ou fermer ses propres questions"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr ""
"requalifier les questions d'autres utilisateurs (modifier leurs mots-clés)"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "Modifier les questions du \"Wiki communautaire\"."
-#: skins/default/templates/faq_static.html:67
-msgid "\"edit any answer"
+#: skins/default/templates/faq_static.html:61
+#, fuzzy
+msgid "edit any answer"
msgstr "\"modifier n'importe quelle réponse"
-#: skins/default/templates/faq_static.html:71
-msgid "\"delete any comment"
+#: skins/default/templates/faq_static.html:65
+#, fuzzy
+msgid "delete any comment"
msgstr "\"supprimer n'importe quel commentaire"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "Qu'est ce que 'Gravatar' ?"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
-msgstr ""
-"Gravatar signifie (globally recognized avatar, en français avatar universel)."
-"Gravatar est basé sur un service en ligne qui permet d’attribuer un avatar "
-"(image) à une adresse e-mail. Vous laissez un commentaire avec cette adresse "
-"e-mail sur un blog ou un forum de discussion et l’image que vous avez "
-"choisie pour vous représenter apparait automatiquement. Il faut bien sûr que "
-"le site en question gère ces gravatars.Pour obtenir votre gravatar : 1. "
-"Rendez-vous sur le site gravatar (http://fr.gravatar.com/) et saisissez "
-"votre adresse e-mail. 2. Vous allez recevoir un e-mail en retour. Cliquez "
-"sur le lien dans l’e-mail pour confirmer votre adresse. 3. De retour sur "
-"le site de gravatar, cliquez sur le lien mon gravatar. 4. Envoyez une "
-"photo que vous associez à votre e-mail (pas trop grande, la photo, mais vous "
-"pourrez la recadrer sur le site). 5. Maintenant, lorsque vous saisissez "
-"votre e-mail avec un commentaire, votre gravatar s’affiche (patientez "
-"quelques minutes quand même. 6. Vous pouvez créer autant de gravatars que "
-"vous avez d’adresses e-mail."
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Ais-je besoin de créer un nouveau mot de passe pour m'inscrire ?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
@@ -5029,21 +5017,21 @@ msgstr ""
"Non. Ce n'est pas obligatoire. Vous pouvez vous connecter avec n'importe "
"quel service compatible OpenID, ex: Google, Yahoo, AOL, etc..\""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr "\"Je me connecte immédiatement !\""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr ""
"Pourquoi les autres utilisateurs peuvent-ils modifier mes questions ou mes "
"réponses ?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr "L'objectif de ce site est simple :"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "
@@ -5054,19 +5042,19 @@ msgstr ""
"globale de la base de connaissances qui est peu à peu constituée par notre "
"communauté."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr "Si cette approche ne vous convient pas, nous respectons votre choix."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "D'autres questions ?"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Merci de <a href='%(ask_question_url)s'>poser vos questions ici</a>; vous "
"nous aiderez ainsi à étoffer notre base de connaissances, dans l'intérêt de "
@@ -5135,6 +5123,68 @@ msgstr ""
"Bonjour, un utilisateur du forum a souhaité faire une remarque sur : "
"%(site_title)s \n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "réponses pour %(username)s"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5258,179 +5308,158 @@ msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr ""
"<p>Salutations,<br/>L'administarteur du forum de Questions/Réponses</p>"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr "Partager cette question sur twitter"
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-#, fuzzy
-msgid "i like this question (click again to cancel)"
-msgstr "J'aime ce message (cliquez à nouveau pour annuler)"
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "J'aime cette réponse (cliquez à nouveau pour annuler)"
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr "Nombre de votes actuel"
-#: skins/default/templates/macros.html:43
-#, fuzzy
-msgid "i dont like this question (click again to cancel)"
-msgstr "Je n'aime pas ce message (cliquez à nouveau pour annuler)"
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr "Je n'aime pas cette réponse (cliquez à nouveau pour annuler)"
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
msgid "anonymous user"
msgstr "anonyme"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "posée"
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "répondue"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "postée"
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "actualisée"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "Voir les questions marquées par '%(tag)s'."
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "Supprimer ce commentaire"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "Ajouter un commentaire"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "Voir <strong>1</strong> de plus"
-msgstr[1] "Voir <strong>%(counter)s</strong> de plus"
-
-#: skins/default/templates/macros.html:310
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "Voir <strong>1</strong> commentaire de plus"
-msgstr[1] "Voir <strong>%(counter)s</strong> commentaires de plus"
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "Image Gravatar de %(username)s"
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr "Le site web de %(username)s est \"%(url)s"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "page précédente"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "page actuelle"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "Page %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "page suivante"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "messages par page"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr "réponses pour %(username)s"
-#: skins/default/templates/macros.html:632
-#, python-format
-msgid "you have a new response"
+#: skins/default/templates/macros.html:610
+#, fuzzy, python-format
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "vous avez une nouvelle réponse"
msgstr[1] "vous avez %(response_count)s nouvelles réponses"
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "pas de nouvelles réponses pour l'instant"
# FIXME
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, fuzzy, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "%(new)s nouveaux messages étiquetés"
# FIXME
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr "%(new)s nouveaux messages étiquetés"
# FIXME
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr "%(seen)s messages taggés"
@@ -5439,10 +5468,37 @@ msgstr "%(seen)s messages taggés"
msgid "Questions"
msgstr "Questions"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
-msgstr "Politique en matière de respect de la vie privée"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "Voir <strong>1</strong> de plus"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "Voir <strong>1</strong> de plus"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "ajouter des commentaires"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Répondre à votre propre question"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "Votre réponse"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Connectez vous (ou Inscrivez vous) pour poster votre réponse"
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
@@ -5451,8 +5507,9 @@ msgstr "Modifier une question"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Modifier les tags"
+#, fuzzy
+msgid "Retag question"
+msgstr "Questions liées"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -5508,6 +5565,13 @@ msgstr "Réouvrir cette question ?"
msgid "Reopen this question"
msgstr "Réouvrir cette question"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5538,17 +5602,17 @@ msgstr "Cette question a été close pour la raison suivante "
msgid "Subscribe"
msgstr "utiliser les mots-clés (tags)"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Liste des tags"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Liste des tags"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
#, fuzzy
msgid "Sort by &raquo;"
msgstr "Trier par:"
@@ -5569,7 +5633,7 @@ msgstr "triée par fréquence d'utilisation des tags"
msgid "by popularity"
msgstr "par popularité"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "Aucun résultat"
@@ -5583,8 +5647,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "réputation"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5615,7 +5681,7 @@ msgstr "utilisateurs vérifiant les critères %(suser)s"
msgid "Nothing found."
msgstr "Aucun résultat."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5632,43 +5698,43 @@ msgstr "avec la contribution de %(author_name)s"
msgid "Tagged"
msgstr "marquée avec des mots-clés"
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr "Conseils pour la recherche:"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr "Réinitialiser l'auteur"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
#, fuzzy
msgid " or "
msgstr "ou"
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr "Réinitialiser les tags"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr "Recommencer"
# FIXME
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
" - pour développer ou restreindre en ajoutant plus de tags et en révisant la "
"requête"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr "Conseil pour la recherche:"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr "ajouter des tags et une requête pour affiner votre recherche"
@@ -5707,19 +5773,19 @@ msgstr "repartant de zéro"
msgid "Please always feel free to ask your question!"
msgstr "N'hésitez pas à poser des questions !"
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr "Vous n'avez pas trouvé ce que vous cherchiez ?"
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr "Veuillez saisir votre question !"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
msgid "subscribe to the questions feed"
msgstr "S'abonner au flux RSS des questions"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5731,21 +5797,21 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, fuzzy, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] "Chaque mot-clé doit comporter moins de %(max_chars)d caractère"
msgstr[1] "Chaque mot-clé doit comporter moins de %(max_chars)d caractères"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, fuzzy, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "Veuillez utiliser %(tag_count)d mot-clé, ou moins"
msgstr[1] "Veuillez utiliser %(tag_count)d mots-clés, ou moins"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, fuzzy, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5755,11 +5821,11 @@ msgstr "jusqu'à 5 tags, faisant chacun moins de 20 caractères"
#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
@@ -5768,72 +5834,64 @@ msgstr[1] ""
"\n"
" %(counter)s réponses :"
+#: skins/default/templates/question/answer_tab_bar.html:11
+#, fuzzy
+msgid "Sort by »"
+msgstr "Trier par:"
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr "Les réponses les plus anciennes seront affichées en premier"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "réponses les plus anciennes"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "Les réponses les plus récentes seront affichées en premier"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "Réponses les plus récentes"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "Les réponses ayant obtenu le plus de votes seront affichées en premier"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "réponses populaires"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "Répondre à votre propre question"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "Connectez vous (ou Inscrivez vous) pour poster votre réponse"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "Votre réponse"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr "Soyez le premier à répondre à cette quesion !"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
-"<span class='strong big'>Vous pouvez commencer par répondre anonymement à "
-"cette question</span>, puis vous connecter ensuite "
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
msgstr ""
-"vous pouvez répondre à vos propres questions uniquement pour donner une "
-"réponse"
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+msgid ""
+"<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)!"
msgstr ""
-"Merci de vous contenter de donner une réponse; n'instaurez pas une discussion"
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
-msgstr "Connectez vous (ou Inscrivez vous) pour poster votre réponse"
-
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Répondre à cette question"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5851,62 +5909,62 @@ msgstr "ou"
msgid "email"
msgstr "email"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Tags de la question"
# FIXME
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "Cliquez ici pour voir les questions ayant obtenu le plus de réponses"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "Toutes les questions"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "Toutes les questions"
# FIXME
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "Cliquez ici pour voir les questions ayant obtenu le plus de réponses"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "Toutes les questions"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "Modification(s) d'email(s) annulée(s)"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "S'abonner au flux RSS des questions"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "S'abonner au flux RSS des questions"
@@ -5916,58 +5974,46 @@ msgid "Stats"
msgstr ""
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "question posée"
+#, fuzzy
+msgid "Asked"
+msgstr "posée"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "la question a été vue:"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "fois"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "dernière mise à jour"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Questions liées"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr ""
-"<strong>Me notifier les nouvelles réponses par email</strong> une fois par "
-"jour"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+#, fuzzy
+msgid "Email me when there are any new answers"
msgstr ""
"<strong>Me notifier les nouvelles réponses par email</strong> une fois par "
"semaine"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-#, fuzzy
-msgid "Notify me immediately when there are any new answers"
-msgstr "Me notifier immédiatement dès qu'il y a des nouvelles réponses"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
-msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr ""
-"Vous pourrez toujours ajuster la fréquence des emails de notification depuis "
-"<strong><a href='%(profile_url)s?sort=email_subscriptions'>votre profil</a></"
-"strong> ...)"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
"vous pourrez vous abonner aux mails de notifications de mise à jour dès que "
"vous vous serez connecté"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+
# FIXME ou bien "Annulation des emails de notification de mises à jour" ???
#: skins/default/templates/user_profile/user.html:12
#, python-format
@@ -6000,8 +6046,13 @@ msgstr "Utilisateur enregistré"
msgid "Screen Name"
msgstr "Pseudo"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "Compte supprimé."
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Mettre à jour"
@@ -6014,16 +6065,21 @@ msgstr "Abonnements aux emails"
msgid "Email subscription settings"
msgstr "Paramètres d'abonnement aux emails"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
msgstr ""
-"<span class='big strong'>Infos concernant les paramètres d'abonnement aux "
-"emails </span> Ceci vous permet de vous abonner aux questions que vous "
-"trouvez intéressantes. Vous recevrez les réponses par email. "
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Arrêter d'envoyer des emails"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Votre adresse email</strong> (ne sera<strong>pas</strong> visible "
+"des autres utilisateurs; et doit être valide)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -6052,21 +6108,25 @@ msgid "flagged items (%(flag_count)s)"
msgstr "Veuillez utiliser %(tag_count)d mot-clé, ou moins"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
#, fuzzy
msgid "select:"
msgstr "Supprimer"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
#, fuzzy
msgid "seen"
msgstr "dernière connexion"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
#, fuzzy
msgid "new"
msgstr "date (↓)"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
#, fuzzy
msgid "none"
msgstr "bronze"
@@ -6086,6 +6146,16 @@ msgstr "marquée comme meilleure réponse"
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "Voir tous les mots-clés"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "Supprimer"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "Mettre à jour le profil"
@@ -6100,7 +6170,8 @@ msgid "real name"
msgstr "nom réél"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "membre depuis"
#: skins/default/templates/user_profile/user_info.html:63
@@ -6108,8 +6179,9 @@ msgid "last seen"
msgstr "dernière connexion"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr "Site internet"
+#, fuzzy
+msgid "website"
+msgstr "Site web"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -6253,19 +6325,16 @@ msgstr "Profil de l'utilisateur %(username)s"
# TODO demander au développeur de faire 2 entrées distinctes. Une contiendra "date (↑)" et l'autre "date"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr "actualité (↓)"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "L'évolution de votre Karma."
@@ -6288,21 +6357,17 @@ msgstr[0] "<span class=\"count\">%(counter)s</span> Question"
msgstr[1] "<span class=\"count\">%(counter)s</span> Questions"
#: skins/default/templates/user_profile/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] "<span class=\"count\">%(counter)s</span> Réponse"
-msgstr[1] "<span class=\"count\">%(counter)s</span> Réponses"
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "réponse"
+msgstr[1] "réponses"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "Cette réponse a obtenu %(answer_score)s votes positifs"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "Cette réponse a été sélectionnée comme correct"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6340,7 +6405,7 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] "<span class=\"count\">%(counter)s</span> Mot-clé"
msgstr[1] "<span class=\"count\">%(counter)s</span> Mots-clés"
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
@@ -6348,7 +6413,7 @@ msgstr[0] "<span class=\"count\">%(counter)s</span> Badge"
msgstr[1] "<span class=\"count\">%(counter)s</span> Badges"
# FIXME
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "Conseils pour répondre"
@@ -6357,7 +6422,7 @@ msgstr "Conseils pour répondre"
msgid "User profile"
msgstr "Profil utilisateur"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "Commentaires et réponses à d'autres questions"
@@ -6366,50 +6431,40 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "Statistiques sur la réputation de cet utilisateur"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "Historique de la réputation"
-
#: skins/default/templates/user_profile/user_tabs.html:25
#, fuzzy
msgid "questions that user is following"
msgstr "questions favorites de cet utilisateur"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "activité récente"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "Trace des votes de cet utilisateur"
-# FIXME
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "abgegebene Stimmen"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "votes"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "Paramètres d'abonnement aux emails"
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr "Modérer cet utilisateur"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "votes"
-
-# FIXME
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "Conseils pour répondre"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr ""
"Rédiger vos réponses afin qu'elles soient pertinentes pour la communauté."
@@ -6420,8 +6475,10 @@ msgstr ""
"discussion."
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "Fournissez un maximum de détails."
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "Merci de fournir suffisamment de détails."
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -6435,7 +6492,8 @@ msgstr "lisez notre FAQ (Foire aux questions)"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Aide sur les balises \"Markdown\""
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6459,11 +6517,6 @@ msgid "**bold** or __bold__"
msgstr "**gras** ou __gras__"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "lien"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6490,10 +6543,6 @@ msgstr "les balises HTML élémentaires sont aussi supportées."
msgid "learn more about Markdown"
msgstr "en savoir plus sur les balises \"Markdown\""
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "Poser une question"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
@@ -6505,26 +6554,25 @@ msgstr ""
"des fonctionnalités de notre module de questions/réponses, qui repose sur un "
"principe communautaire."
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"<span class='strong big'>Ihre E-Mail-Adresse %(email)s wurde noch nicht "
-"bestätigt.</span> Um Beiträge veröffentlichen zu können, müssen Sie Ihre E-"
-"Mail-Adresse bestätigen. <a href='%(email_validation_faq_url)s'>Mehr infos "
-"hier</a>.<br>Sie können Ihren Beitrag speichern und die Bestätigung danach "
-"durchführen - Ihr Beitrag wird bis dahin gespeichert."
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Vous devez vous authentifier pour publier votre question "
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Poser votre question"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6540,10 +6588,15 @@ msgid "about"
msgstr "Qui sommes nous ?"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "Respect de la vie privée"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "Faire une remarque"
@@ -6564,17 +6617,11 @@ msgstr "Communauté"
msgid "badges"
msgstr "Réputation"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "conseils pour poser une question"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "Merci de poser une question pertinente."
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "Merci de fournir suffisamment de détails."
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr ""
+"Rédiger vos réponses afin qu'elles soient pertinentes pour la communauté."
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
@@ -6594,28 +6641,28 @@ msgid_plural "votes"
msgstr[0] "vote"
msgstr[1] "votes"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr "Voir les questions sans réponses"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "Voir vos questions favorites"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "Veuillez saisir votre question !"
@@ -6628,23 +6675,26 @@ msgstr ""
msgid "badges:"
msgstr "badges :"
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "Déconnexion"
+#: skins/default/templates/widgets/user_navigation.html:9
+#, fuzzy
+msgid "sign out"
+msgstr "deconnexion/"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "Connexion"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "Merci de vous authentifiez :"
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr "paramètres"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "0"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr "bronze"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr ""
@@ -6662,7 +6712,8 @@ msgid "this field is required"
msgstr "ce champ est obligatoire"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "choisissez un nom d'utilisateur"
#: utils/forms.py:69
@@ -6699,8 +6750,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "Votre adresse email <i>(ne sera pas communiquée)</i>"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6716,17 +6767,13 @@ msgstr ""
"Cette adresse email est déjà utilisée par un autre utilisateur; veuillez en "
"saisir une autre"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "choisissez un mot de passe"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "le mot de passe est obligatoire"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "Saisissez à nouveau le mot de passe <i>(pour confirmation)</i>"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6736,28 +6783,59 @@ msgstr "Merci de resaisir votre mot de passe"
msgid "sorry, entered passwords did not match, please try again"
msgstr "désolé, les 2 mots de passe sont différents, veuillez recommencer"
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "il y a 2 jours"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "hier"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] "il y a %(hr)d heure"
msgstr[1] "il y a %(hr)d heures"
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] "il y a %(min)d minute"
msgstr[1] "il y a %(min)d minutes"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6770,95 +6848,105 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+#, fuzzy
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr ""
+"Désolé, mais les utilisateurs anonymes ne peuvent aps accepter les réponses"
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "les utilisateurs anonymes ne peuvent pas voter"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "Désolé, vous avez épuisé votre crédit de votes pour ajourd'hui"
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Il vous reste un crédit de %(votes_left)s votes pour aujourd'hui"
-#: views/commands.py:123
-#, fuzzy
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr ""
-"Désolé, mais les utilisateurs anonymes ne peuvent aps accepter les réponses"
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "Désolé, il semble y avoir un problème..."
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr ""
"Désolé, mais les utilisateurs anonymes ne peuvent aps accepter les réponses"
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr ""
"Votre abonnement a été enegistré, mais nous devons valider votre adresse "
"email %(email)s ; <a href='%(details_url)s'>Cliquez ici pour en savoir plus</"
"a>."
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr ""
"La fréquence d'envoi des emails de notification de mises à jour est "
"désormais \"quotidienne\"."
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:578
+#: views/commands.py:600
#, fuzzy
msgid "Please sign in to vote"
msgstr "Merci de vous authentifiez :"
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Merci de vous authentifiez :"
+
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "A propos de %(site_name)s"
+
# FIXME à vérifier
-#: views/meta.py:84
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
"Vos remarques, critiques et suggestions sur notre forum de questions/réponses"
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Merci pour vos remarques !"
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
"Nous aimerions bien savoir ce que vous pensez de notre service de questions/"
"réponses ! Lors de votre prochaine visite, n'hésitez pas à nous envoyer vos "
"remarques, critiques et suggestions ;o)"
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr "Politique en matière de respect de la vie privée"
+
+#: views/readers.py:133
#, fuzzy, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s question"
msgstr[1] "%(q_num)s questions"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d %(badge_level)s badge"
-msgstr[1] "%(badge_count)d %(badge_level)s badges"
-
-#: views/readers.py:416
+#: views/readers.py:388
#, fuzzy
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
@@ -6866,96 +6954,101 @@ msgid ""
msgstr "Désolé, cette question a été supprimée, et n'est plus accessible."
# FIXME
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr "utilisateur modéré"
# FIXME ou bien "Annulation des emails de notification de mises à jour" ???
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "profil de l'utilisateur"
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "infOs générales sur le profil de l'utilisateur"
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "activité récente de l'utilisateur"
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "profil - activité récente"
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "profil - réactions"
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "profil - votes"
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "réputation de l'utilisateur au sein de la communauté"
+#: views/users.py:701
+msgid "user karma"
+msgstr ""
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "profil - réputation de l'utilisateur"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "questions favorites des utilisateurs"
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "profil - questions favorites"
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "Modifications enregistrées."
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "Modification(s) d'email(s) annulée(s)"
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "profil - abonnements emails"
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
"Désolé, les utilisateurs anonymes ne peuvent pas transférer de fichiers"
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "Les types de fichiers autoprisés sont '%(file_types)s'"
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
"La taille maximale autorisée pour un fichier est de %(file_size)s Kilo-octets"
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
"Une erreur est survenue lors du transfert du fichier sur notre serveur. "
"Merci de contacter l'administrateur."
-#: views/writers.py:192
-#, fuzzy
-msgid "Please log in to ask questions"
-msgstr "N'hésitez pas à poser des questions !"
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
#, fuzzy
msgid "Please log in to answer questions"
msgstr "Voir les questions sans réponses"
-#: views/writers.py:600
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -6965,13 +7058,13 @@ msgstr ""
"déconnecté. Merci d'essayer de vous <a href=\"%(sign_in_url)s\">reconnecter</"
"a>."
-#: views/writers.py:649
+#: views/writers.py:589
#, fuzzy
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
"Désolé, les utilisateurs anonymes ne peuvent pas transférer de fichiers"
-#: views/writers.py:658
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -6981,25 +7074,551 @@ msgstr ""
"déconnecté. Merci d'essayer de vous <a href=\"%(sign_in_url)s\">reconnecter</"
"a>."
-#: views/writers.py:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
"Désolé, nous rencontrons apparemment des difficultés d'ordre techniques..."
-#~ msgid "question content must be > 10 characters"
-#~ msgstr "La question doit comporter plus de 10 caractères."
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "utiliser-ces-caracteres-dans-les-mots-cles"
+
+#, fuzzy
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "Cet email ne doit pas être lié à Gravatar"
#, fuzzy
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Explique comment changer le mot de passe LDAP"
+
+#~ msgid "question_answered"
+#~ msgstr "question_repondue"
+
+#~ msgid "question_commented"
+#~ msgstr "question_commentee"
+
+#~ msgid "answer_commented"
+#~ msgstr "reponse_commentee"
+
+#~ msgid "answer_accepted"
+#~ msgstr "reponse_acceptee"
+
+#~ msgid "Incorrect username."
+#~ msgstr "Nom d'utilisateur incorrect."
+
+#~ 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>Bonjour %(name)s,</p></p>Il y a du nouveau concernant %(num)d question:"
+#~ "</p>"
+#~ msgstr[1] ""
+#~ "<p>Bonjour %(name)s,</p><p>Il y a du nouveau concernant %(num)d questions:"
+#~ "</p>"
+
+#~ 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 ""
+#~ "Merci de visiter notre forum de Questions/Réponses pour découvrir les "
+#~ "nouvelles questions. Passez le mot autour de vous si vous connaissez "
+#~ "quelqu'un susceptible de nous aider en répondant à certaines questions, "
+#~ "ou qui pourrait bénéficier de notre forum en y postant ses propres "
+#~ "questions..."
+
#~ msgid ""
-#~ "If you believe that this message was sent in mistake - \n"
-#~ "no further action is needed. Just ignore this email, we apologize\n"
-#~ "for any inconvenience."
+#~ "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 ""
+#~ "FIXME - Dans vos derniers paramétrages, vous avez opté pour recevoir des "
+#~ "mails quotidiennement. Si vous recevez plus d'un email par jour, merci "
+#~ "d'avertir l'administrateur du forum de ce problème. "
+
+#~ 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 ""
+#~ "FIXME - Dans vos derniers paramétrages, vous avez opté pour recevoir des "
+#~ "mails de façon hebdomadaire. Si vous recevez plus d'un email par semaine, "
+#~ "merci d'avertir l'administrateur du forum de ce problème. "
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr ""
+#~ "Il est possible que vous receviez des liens plusieurs fois; nous sommes "
+#~ "en train de plancher sur ce problème"
+
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "Allez à l'adresse %(email_settings_link)s pour changer la fréquence des "
+#~ "emails de mises à jour, ou bien informez l'administrateur à l'adresse "
+#~ "%(admin_email)s"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr ""
+#~ "Le transfert d'images vers notre serveur est réservé aux utilisateurs "
+#~ "ayant plus de >%(min_rep)s points de réputation"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr "Les utilisateurs bloques ne peuvent pas publier"
+
+#~ msgid "suspended users cannot post"
+#~ msgstr "Les utilisateurs suspendus ne peuvent pas publier"
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr "Un message ne peut pas être étiqueté \"abusif\" deux fois"
+
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr "Les utilisateurs bloqués ne peuvent pas étiqueter les messages"
+
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr "Les utilisateurs suspendus ne peuvent pas étiqueter les messages"
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr ""
+#~ "Il faut au moins %(min_rep)s points de réputation pour pouvoir étiqueter "
+#~ "les messages comme étant du spam"
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr "%(max_flags_per_day)s dépassé"
+
+#, fuzzy
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr "Les utilisateurs bloqués ne peuvent pas étiqueter les messages"
+
+#, fuzzy
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr "Les utilisateurs suspendus ne peuvent pas étiqueter les messages"
+
+#, fuzzy
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] ""
+#~ "Il faut au moins %(min_rep)s points de réputation pour pouvoir étiqueter "
+#~ "les messages comme étant du spam"
+#~ msgstr[1] ""
+#~ "Il faut au moins %(min_rep)s points de réputation pour pouvoir étiqueter "
+#~ "les messages comme étant du spam"
+
+# FIXME ou "ayant reçu un vote négatif"
+#~ msgid "cannot revoke old vote"
+#~ msgstr "impossible de révoquer un ancien vote"
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s a modifié la question"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr ""
+#~ "Les utilisateurs %(people)s ont posté %(new_answer_count)s nouvelles "
+#~ "réponses"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s a/ont commenté cette question"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s a/ont commenté des réponses"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s a/ont commenté une réponse"
+
+# FIXME
+#~ msgid "change %(email)s info"
+#~ msgstr "Informations concernant le changement d'email : %(email)s"
+
+# FIXME
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "voici pourquoi les emails sont obligatoires; pour plus d'infos, consultez "
+#~ "la page %(gravatar_faq_url)s"
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Votre nouvelle adresse email:</strong> (ne sera<strong>pas</"
+#~ "strong> visible des autres utilisateurs; et doit être valide)"
+
+# FIXME
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "valider l'information %(email)s ou visitez la page : %(change_email_url)s"
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "ancien email %(email)s conservé; si vous souhaitez le changer rendez-vous "
+#~ "à l'url %(change_email_url)s"
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Votre adresse email actuelle %(email)s peut être "
+#~ "utilisée pour cela.</span>"
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Merci d'avoir validé votre email.</span> Vous "
+#~ "pouvez désormais <strong>poser des questions</strong> et <strong>répondre "
+#~ "aux questions ouvertes</strong>. Vous pouvez également <strong>vous "
+#~ "abonnez pour recevoir périodiquement par email des questions qui vous "
+#~ "intéressent</strong>, ou être informé(e) des réponses et commentairesà "
+#~ "vos questions."
+
+# FIXME
+#~ msgid "email key not sent"
+#~ msgstr "l'email comportant la clé de validation n'a pas été envoyé"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Ihre momentane E-Mail-Adresse %(email)s wurde "
+#~ "bereits bestätigt</span>. Es wurde keine neue Bestätigungsmail versandt. "
+#~ "Sie können Ihre E-Mail-Adresse bei Bedarf <a "
+#~ "href='%(change_link)s'>ändern</a>."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "Créez vous un compte chez %(provider)s; pour plus d'infos, <a "
+#~ "href='%(gravatar_faq_url)s'>cliquez ici</a>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "L'utilisateur %(username)s existe déjà; veuillez choisir un autre nom "
+#~ "pour \n"
+#~ " %(provider)s. Un email est aussi obligatoire, "
+#~ "cf. %(gravatar_faq_url)s"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "Informations concernant la création d'un nouveau compte chez un "
+#~ "fournisseur d'identité externe %(provider)s; pour plus d'infos <a "
+#~ "href='%(gravatar_faq_url)s'>cliquez ici</a>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "Informations concernant la création d'un nouveau compte Facebook pour se "
+#~ "connecter; pour plus d'infos visitez la page %(gravatar_faq_url)s"
+
+#~ msgid "This account already exists, please use another."
+#~ msgstr "Ce compte existe déjà; merci d'en utiliser un autre."
+
+# FIXME
+#~ msgid "Screen name label"
+#~ msgstr "Pseudo"
+
+# FIXME
+#~ msgid "Email address label"
+#~ msgstr "Adresse email"
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr ""
+#~ "L'outil de filtrage des mots-clés sera affiché à droite de l'écran, une "
+#~ "fos que vous serez authentifié"
+
+#~ msgid "create account"
+#~ msgstr "Créer un compte"
+
+#~ 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 ""
#~ "Si vous pensez que ce message a été envoyé par erreur - \n"
#~ "aucune action de votre part n'est nécessaire. Ignorez ce mail, et "
#~ "veuillez accepter nos excuses \n"
#~ "pour le dérangement que nous avons occasionné"
+#~ msgid "Login"
+#~ msgstr "Connexion"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "Pourquoi utiliser OpenID ?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "OpenID est le nouveau standard d’identification sur Internet."
+
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "Le principe d'OpenID est simple : au lieu de créer un nouveau compte sur "
+#~ "chaque nouveau site que vous visitez, vous créez UNE FOIS POUR TOUTES un "
+#~ "compte \"OpenID\" chez le fournisseur de votre choix (Gmail, Yahoo, AOL, "
+#~ "Orange...).Vous pourrez ensuite le réutiliser pour vous authentifier sur "
+#~ "d'autres sites \"compatibles OpenID\", sans avoir besoin de remplir le "
+#~ "formulaire d'inscription de ces sites..."
+
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "OpenID à été adopté par tous les grands portails (Google, Yahoo, "
+#~ "Facebook, Microsoft, Flicker, ...) ce qui porte le nombre de comptes "
+#~ "OpenID à plus de 300 millions. Plus de 10000 sites sont compatibles "
+#~ "OpenID. "
+
+#~ msgid "openid is supported open standard"
+#~ msgstr "OpenId est basé sur un standard international et libre."
+
+#~ msgid "Find out more"
+#~ msgstr "En savoir plus."
+
+#~ msgid "Get OpenID"
+#~ msgstr "Obtenir un compte OpenID"
+
+#~ msgid "Traditional signup info"
+#~ msgstr "Informations sur la méthode classique de connexion"
+
+#~ msgid "Create Account"
+#~ msgstr "Créer un compte"
+
+#~ msgid "answer permanent link"
+#~ msgstr "lien permanent vers une réponse"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "Voir tous les mots-clés"
+
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "%(question_author)s a choisi cette réponse comme correcte"
+
+#~ msgid "Related tags"
+#~ msgstr "Tags associés"
+
+#~ msgid "Ask a question"
+#~ msgstr "Poser une question"
+
+#~ msgid "Badges summary"
+#~ msgstr "Résumé badges"
+
+#~ msgid "gold badge description"
+#~ msgstr "Badge or - blah blah"
+
+#~ msgid "silver badge description"
+#~ msgstr "Badge argent - blah blah"
+
+#~ msgid "bronze badge description"
+#~ msgstr "Badge bronze - blah blah"
+
+#~ 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 ""
+#~ "est un site de questions/réponses, et non pas un forum de discussion. Par "
+#~ "conséquent, merci de ne pas discuter ou polémiquer dans vos réponses. "
+#~ "Vous avez toutefois la possibilité de faire de brèves discussions dans le "
+#~ "champ COMMENTAIRES."
+
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "Quand une question ou une réponse est jugée positivement par le reste de "
+#~ "la communauté, son auteur acquiert des points. Ces points lui permettent "
+#~ "de \"monter en grade\" et obtenir un pouvoir grandissant en terme de "
+#~ "possibilités de modérations. "
+
+#~ msgid "use tags"
+#~ msgstr "utiliser les mots-clés (tags)"
+
+#~ msgid "what is gravatar"
+#~ msgstr "Qu'est ce que 'Gravatar' ?"
+
+#~ msgid "gravatar faq info"
+#~ msgstr ""
+#~ "Gravatar signifie (globally recognized avatar, en français avatar "
+#~ "universel).Gravatar est basé sur un service en ligne qui permet "
+#~ "d’attribuer un avatar (image) à une adresse e-mail. Vous laissez un "
+#~ "commentaire avec cette adresse e-mail sur un blog ou un forum de "
+#~ "discussion et l’image que vous avez choisie pour vous représenter "
+#~ "apparait automatiquement. Il faut bien sûr que le site en question gère "
+#~ "ces gravatars.Pour obtenir votre gravatar : 1. Rendez-vous sur le site "
+#~ "gravatar (http://fr.gravatar.com/) et saisissez votre adresse e-mail. "
+#~ "2. Vous allez recevoir un e-mail en retour. Cliquez sur le lien dans l’e-"
+#~ "mail pour confirmer votre adresse. 3. De retour sur le site de "
+#~ "gravatar, cliquez sur le lien mon gravatar. 4. Envoyez une photo que "
+#~ "vous associez à votre e-mail (pas trop grande, la photo, mais vous "
+#~ "pourrez la recadrer sur le site). 5. Maintenant, lorsque vous saisissez "
+#~ "votre e-mail avec un commentaire, votre gravatar s’affiche (patientez "
+#~ "quelques minutes quand même. 6. Vous pouvez créer autant de gravatars "
+#~ "que vous avez d’adresses e-mail."
+
+#, fuzzy
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "J'aime ce message (cliquez à nouveau pour annuler)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "J'aime cette réponse (cliquez à nouveau pour annuler)"
+
+#, fuzzy
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "Je n'aime pas ce message (cliquez à nouveau pour annuler)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "Je n'aime pas cette réponse (cliquez à nouveau pour annuler)"
+
+#~ msgid "add comment"
+#~ msgstr "Ajouter un commentaire"
+
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] "Voir <strong>1</strong> commentaire de plus"
+#~ msgstr[1] "Voir <strong>%(counter)s</strong> commentaires de plus"
+
+#~ msgid "posts per page"
+#~ msgstr "messages par page"
+
+#~ msgid "Change tags"
+#~ msgstr "Modifier les tags"
+
+#~ msgid "reputation"
+#~ msgstr "réputation"
+
+#~ msgid "oldest answers"
+#~ msgstr "réponses les plus anciennes"
+
+#~ msgid "newest answers"
+#~ msgstr "Réponses les plus récentes"
+
+#~ msgid "popular answers"
+#~ msgstr "réponses populaires"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr ""
+#~ "<span class='strong big'>Vous pouvez commencer par répondre anonymement à "
+#~ "cette question</span>, puis vous connecter ensuite "
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr ""
+#~ "vous pouvez répondre à vos propres questions uniquement pour donner une "
+#~ "réponse"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr ""
+#~ "Merci de vous contenter de donner une réponse; n'instaurez pas une "
+#~ "discussion"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Connectez vous (ou Inscrivez vous) pour poster votre réponse"
+
+#~ msgid "Answer the question"
+#~ msgstr "Répondre à cette question"
+
+#~ msgid "question asked"
+#~ msgstr "question posée"
+
+#~ msgid "question was seen"
+#~ msgstr "la question a été vue:"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Me notifier les nouvelles réponses par email</strong> une fois "
+#~ "par jour"
+
+#, fuzzy
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr "Me notifier immédiatement dès qu'il y a des nouvelles réponses"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr ""
+#~ "Vous pourrez toujours ajuster la fréquence des emails de notification "
+#~ "depuis <strong><a href='%(profile_url)s?sort=email_subscriptions'>votre "
+#~ "profil</a></strong> ...)"
+
+#~ msgid "email subscription settings info"
+#~ msgstr ""
+#~ "<span class='big strong'>Infos concernant les paramètres d'abonnement aux "
+#~ "emails </span> Ceci vous permet de vous abonner aux questions que vous "
+#~ "trouvez intéressantes. Vous recevrez les réponses par email. "
+
+#~ msgid "Stop sending email"
+#~ msgstr "Arrêter d'envoyer des emails"
+
+#~ msgid "user website"
+#~ msgstr "Site internet"
+
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] "<span class=\"count\">%(counter)s</span> Réponse"
+#~ msgstr[1] "<span class=\"count\">%(counter)s</span> Réponses"
+
+#~ msgid "reputation history"
+#~ msgstr "Historique de la réputation"
+
+#~ msgid "recent activity"
+#~ msgstr "activité récente"
+
+# FIXME
+#~ msgid "casted votes"
+#~ msgstr "abgegebene Stimmen"
+
+# FIXME
+#~ msgid "answer tips"
+#~ msgstr "Conseils pour répondre"
+
+#~ msgid "please try to provide details"
+#~ msgstr "Fournissez un maximum de détails."
+
+#~ msgid "ask a question"
+#~ msgstr "Poser une question"
+
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ " see %(email_validation_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<span class='strong big'>Ihre E-Mail-Adresse %(email)s wurde noch nicht "
+#~ "bestätigt.</span> Um Beiträge veröffentlichen zu können, müssen Sie Ihre "
+#~ "E-Mail-Adresse bestätigen. <a href='%(email_validation_faq_url)s'>Mehr "
+#~ "infos hier</a>.<br>Sie können Ihren Beitrag speichern und die Bestätigung "
+#~ "danach durchführen - Ihr Beitrag wird bis dahin gespeichert."
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Vous devez vous authentifier pour publier votre question "
+
+#~ msgid "question tips"
+#~ msgstr "conseils pour poser une question"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "Merci de poser une question pertinente."
+
+#~ msgid "logout"
+#~ msgstr "Déconnexion"
+
+#~ msgid "login"
+#~ msgstr "Connexion"
+
+#~ msgid "no items in counter"
+#~ msgstr "0"
+
+#~ msgid "your email address"
+#~ msgstr "Votre adresse email <i>(ne sera pas communiquée)</i>"
+
+#~ msgid "choose password"
+#~ msgstr "choisissez un mot de passe"
+
+#~ msgid "retype password"
+#~ msgstr "Saisissez à nouveau le mot de passe <i>(pour confirmation)</i>"
+
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d %(badge_level)s badge"
+#~ msgstr[1] "%(badge_count)d %(badge_level)s badges"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "réputation de l'utilisateur au sein de la communauté"
+
+#, fuzzy
+#~ msgid "Please log in to ask questions"
+#~ msgstr "N'hésitez pas à poser des questions !"
+
+#~ msgid "question content must be > 10 characters"
+#~ msgstr "La question doit comporter plus de 10 caractères."
+
#~ msgid "(please enter a valid email)"
#~ msgstr "(veuillez entrer une adresse email valide)"
@@ -7039,9 +7658,6 @@ msgstr ""
#~ msgid "Question tags"
#~ msgstr "Tags de la question"
-#~ msgid "questions"
-#~ msgstr "questions"
-
#~ msgid "search"
#~ msgstr "Chercher"
@@ -7059,9 +7675,6 @@ msgstr ""
#~ msgid "In:"
#~ msgstr "Questions:"
-#~ msgid "Sort by:"
-#~ msgstr "Trier par:"
-
#~ msgid "Email (not shared with anyone):"
#~ msgstr "Votre email (ne sera pas communiqué):"
@@ -7235,10 +7848,6 @@ msgstr ""
#~ msgid "Email verification subject line"
#~ msgstr "Vérification de votre adresse email"
-#, fuzzy
-#~ msgid "Posted 10 comments"
-#~ msgstr "ajouter des commentaires"
-
#~ msgid "About"
#~ msgstr "A propos"
diff --git a/askbot/locale/fr/LC_MESSAGES/djangojs.po b/askbot/locale/fr/LC_MESSAGES/djangojs.po
index bf5a992f..2664d5b0 100644
--- a/askbot/locale/fr/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/fr/LC_MESSAGES/djangojs.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:54-0500\n"
"PO-Revision-Date: 2011-12-17 21:30+0000\n"
"Last-Translator: Mademoiselle Geek <mademoisellegeek42@gmail.com>\n"
"Language-Team: French (http://www.transifex.net/projects/p/askbot/team/fr/)\n"
@@ -21,7 +21,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr "Etes-vous sûr de vouloir supprimer votre identifiant %s?"
@@ -41,38 +41,38 @@ msgstr ""
msgid "passwords do not match"
msgstr "les mots de passe ne correspondent pas"
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr "Afficher/modifier les méthodes d'identification actuelles"
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr "Merci de saisir votre %s, puis continuer"
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr "Connecter votre compte %(provider_name)s à %(site)s"
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr "Modifier votre mot de passe %s"
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr "Modifier le mot de passe"
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr "Créer un mot de passe pour %s"
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr "Créer un mot de passe"
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr "Créer un compte protégé par mot de passe"
@@ -80,151 +80,84 @@ msgstr "Créer un compte protégé par mot de passe"
msgid "loading..."
msgstr "chargement..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "merci de saisir au moins un mot clé"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "le contenu ne peut pas être vide"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "merci de saisir plus de %s caractères"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "merci de saisir un titre"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "merci de saisir au moins %s caractères"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "privilège insuffisant"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "désolé, vous ne pouvez pas accepter votre propre réponse"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "merci de vous identifier"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr "les utilisateurs anonymes ne peuvent pas suivre une question"
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr "les utilisateurs anonymes ne peuvent pas souscrire à une question"
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "désolé, les utilisateurs anonymes ne peuvent pas voter"
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
"êtes-vous sûr que ce message est offensant, contient du spam, de la "
"publicité, des remarques malveillantes, etc.?"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr ""
+"êtes-vous sûr que ce message est offensant, contient du spam, de la "
+"publicité, des remarques malveillantes, etc.?"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
"les utilisateurs anonymes ne peuvent pas signaler les messages offensants"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "êtes-vous de vouloir supprimer ceci?"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr ""
"désolé, les utilisateurs anonymes ne peuvent pas supprimer ou annuler la "
"suppression d'un message"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "votre message a été restauré!"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "votre message a été supprimé"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "Suivre"
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] "%s Abonné"
-msgstr[1] "%s Abonnés"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>Abonnement</div><div class=\"unfollow\">Désabonnement</div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "annuler la suppression"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "supprimer"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "ajouter un commentaire"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "sauvegarder un commentaire"
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "merci de saisir au moins %s caractères"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "%s caractères restants"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr "annuler"
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "Etes-vous sûr de ne pas vouloir publier ce commentaire?"
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "supprimer ce commentaire"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "êtes-vous sûr de vouloir supprimer ce commentaire?"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "Veuillez entrer le titre de la question (>10 caractères)"
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "L'étiquette \"<span></span>\" doit correspondre:"
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "et %s plus, non montré"
@@ -238,120 +171,180 @@ msgid_plural "Delete these notifications?"
msgstr[0] "Supprimer cet avertissement?"
msgstr[1] "Supprimer ces avertissements?"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "supprimer ce commentaire"
+msgstr[1] "supprimer ce commentaire"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "supprimer ce commentaire"
+msgstr[1] "supprimer ce commentaire"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
"Veuillez <a href=\"%(signin_url)s\">vous connecter</a> pour suivre "
"%(username)s"
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "Ne plus suivre %s"
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "Abonnement %s"
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "Suivre %s"
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "cliquer pour fermer"
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "cliquer pour modifier ce commentaire"
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "modifier"
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr "voir les questions marquées '%s'"
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "gras"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "italique"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "lien"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "citation"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "texte pré-formaté"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "image"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr "pièce jointe"
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "liste numérotée"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "liste à puces"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "titre"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "barre horizontale"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "défaire"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "refaire"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
"saisir l'URL de l'image, par example http://www.example.com/image.jpg ou "
"télécharger une image vers le serveur"
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
"saisir une adresse web, par example http://www.example.com \"titre de la page"
"\""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "Merci de choisir un fichier et de le télécharger vers le serveur:"
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr "description de l'image"
+#~ msgid "tags cannot be empty"
+#~ msgstr "merci de saisir au moins un mot clé"
+
+#~ msgid "content cannot be empty"
+#~ msgstr "le contenu ne peut pas être vide"
+
+#~ msgid "%s content minchars"
+#~ msgstr "merci de saisir plus de %s caractères"
+
+#~ msgid "please enter title"
+#~ msgstr "merci de saisir un titre"
+
+#~ msgid "%s title minchars"
+#~ msgstr "merci de saisir au moins %s caractères"
+
+#~ msgid "Follow"
+#~ msgstr "Suivre"
+
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] "%s Abonné"
+#~ msgstr[1] "%s Abonnés"
+
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr "<div>Abonnement</div><div class=\"unfollow\">Désabonnement</div>"
+
+#~ msgid "undelete"
+#~ msgstr "annuler la suppression"
+
+#~ msgid "delete"
+#~ msgstr "supprimer"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "merci de saisir au moins %s caractères"
+
+#~ msgid "%s characters left"
+#~ msgstr "%s caractères restants"
+
+#~ msgid "cancel"
+#~ msgstr "annuler"
+
+#~ msgid "confirm abandon comment"
+#~ msgstr "Etes-vous sûr de ne pas vouloir publier ce commentaire?"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "êtes-vous sûr de vouloir supprimer ce commentaire?"
+
+#~ msgid "click to edit this comment"
+#~ msgstr "cliquer pour modifier ce commentaire"
+
+#~ msgid "edit"
+#~ msgstr "modifier"
+
+#~ msgid "see questions tagged '%s'"
+#~ msgstr "voir les questions marquées '%s'"
+
+#~ msgid "image description"
+#~ msgstr "description de l'image"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr "nom du fichier"
+#~ msgid "file name"
+#~ msgstr "nom du fichier"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr "texte du lien"
+#~ msgid "link text"
+#~ msgstr "texte du lien"
diff --git a/askbot/locale/hi/LC_MESSAGES/django.po b/askbot/locale/hi/LC_MESSAGES/django.po
index 244f760d..a957e195 100644
--- a/askbot/locale/hi/LC_MESSAGES/django.po
+++ b/askbot/locale/hi/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-11 22:43-0500\n"
-"PO-Revision-Date: 2012-03-02 09:48+0000\n"
+"POT-Creation-Date: 2012-04-18 18:52-0500\n"
+"PO-Revision-Date: 2012-04-01 23:58+0000\n"
"Last-Translator: Chandan kumar <chandankumar.093047@gmail.com>\n"
"Language-Team: Hindi (http://www.transifex.net/projects/p/askbot/language/"
"hi/)\n"
@@ -79,8 +79,7 @@ msgstr ""
msgid "content"
msgstr "सामग्री"
-#: forms.py:185 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "लेबल "
@@ -96,40 +95,40 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: forms.py:221 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "लेबल की आवश्यकता"
-#: forms.py:230
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "कृपया %(tag_count)d लेबल या कम का उपयोग करें"
msgstr[1] "कृपया %(tag_count)d लेबल या कम का उपयोग करें"
-#: forms.py:238
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "कम से कम निम्नलिखित टैग की आवश्यकता है: %(tags)s"
-#: forms.py:247
+#: forms.py:249
#, 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] "प्रत्येक लेबल %(max_chars)d अक्षरों से कम होना चाहिए"
msgstr[1] "प्रत्येक लेबल %(max_chars)d अक्षरों से कम होना चाहिए"
-#: forms.py:256
+#: forms.py:258
msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:292
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
"सामुदायिक विकी (कर्मा से नहीं सम्मानित किया जायेगा और कई अन्य विकि पोस्ट को संपादित "
"कर सकते हैं)"
-#: forms.py:293
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -137,11 +136,11 @@ msgstr ""
"अगर आप सामुदायिक विकी विकल्प को चुनते हैं,सवाल और जवाब अंकों को उत्पन्न नहीं करते है और "
"लेखक का नाम नहीं दिखाया जाएगा"
-#: forms.py:309
+#: forms.py:311
msgid "update summary:"
msgstr "सारांश अद्यतन:"
-#: forms.py:310
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -149,59 +148,59 @@ msgstr ""
"अपने पुनरीक्षण का संक्षिप्त सार दर्ज करें(उदाहरण के लिए नियत वर्तनी, व्याकरण, शैली में "
"सुधार, यह फ़ील्ड वैकल्पिक है)"
-#: forms.py:384
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "जोड़ने या घटाना के लिए अंकों की संख्या को दर्ज करे "
-#: forms.py:398 const/__init__.py:253
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "स्वीकृत"
-#: forms.py:399 const/__init__.py:254
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "देखते रहे "
-#: forms.py:400 const/__init__.py:255
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "निलंबित"
-#: forms.py:401 const/__init__.py:256
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "अवरोधित"
-#: forms.py:403
+#: forms.py:405
msgid "administrator"
msgstr "ऐडमिनिस्ट्रेटर"
-#: forms.py:404 const/__init__.py:252
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "मध्यस्थ"
-#: forms.py:424
+#: forms.py:426
msgid "Change status to"
msgstr "स्थिति को बदलने के लिए "
-#: forms.py:451
+#: forms.py:453
msgid "which one?"
msgstr "एक है जो?"
-#: forms.py:472
+#: forms.py:474
msgid "Cannot change own status"
msgstr "अपनी स्थिति को नहीं बदल सकते हैं"
-#: forms.py:478
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "अन्य उपयोगकर्ता को मध्यस्थ नहीं बना सकते है"
-#: forms.py:485
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "दूसरे मध्यस्थ की स्थिति को परिवर्तित नहीं सकते हैं"
-#: forms.py:491
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "एडमिन की स्थिति को परिवर्तित नहीं कर सकते हैं"
-#: forms.py:497
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -209,43 +208,48 @@ msgid ""
msgstr ""
"यदि आप %(username)s की स्थिति में परिवर्तन करना चाहते हैं,कृपया एक अर्थपूर्ण चुनाव करें."
-#: forms.py:506
+#: forms.py:508
msgid "Subject line"
msgstr "विषय पंक्ति"
-#: forms.py:513
+#: forms.py:515
msgid "Message text"
msgstr "संदेश पाठ"
-#: forms.py:528
+#: forms.py:530
msgid "Your name (optional):"
-msgstr ""
+msgstr "आपका नाम (वैकल्पिक):"
-#: forms.py:529
+#: forms.py:531
msgid "Email:"
-msgstr ""
+msgstr "ईमेलः"
-#: forms.py:531
+#: forms.py:533
msgid "Your message:"
msgstr "आपका संदेश:"
-#: forms.py:536
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:558
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:597
+#: forms.py:599
msgid "ask anonymously"
msgstr "गुमनाम रूप से पूछना"
-#: forms.py:599
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr "जाँच करें यदि आप सवाल पूछते समय अपना नाम प्रकट नहीं करना चाहते है"
-#: forms.py:752
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
@@ -253,11 +257,11 @@ msgstr ""
"आपने गुमनाम रूप से इस प्रश्न को पूछा है,यदि आप अपनी पहचान को उजागर करने का निर्णय लेते "
"हैं,इस बॉक्स की जाँच करें."
-#: forms.py:756
+#: forms.py:773
msgid "reveal identity"
msgstr "पहचान प्रकट करे "
-#: forms.py:814
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
@@ -265,7 +269,7 @@ msgstr ""
"क्षमा करें, केवल अज्ञात प्रश्न के पूछने वाला ही अपने या उसकी पहचान को बता सकते हैं,कृपया "
"बॉक्स को अचयनित करे "
-#: forms.py:827
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -275,79 +279,96 @@ msgstr ""
"कृपया \"पहचान प्रकट\" बॉक्स की जाँच करें या इस पृष्ठ को पुनः लोड करे और सवाल को फिर से "
"संपादन करने की कोशिश करे ."
-#: forms.py:871
+#: forms.py:888
msgid "Real name"
msgstr "असली नाम"
-#: forms.py:878
+#: forms.py:895
msgid "Website"
msgstr "वेबसाइट"
-#: forms.py:885
+#: forms.py:902
msgid "City"
msgstr "शहर"
-#: forms.py:894
+#: forms.py:911
msgid "Show country"
msgstr "देश दिखाएँ"
-#: forms.py:899
+#: forms.py:916
msgid "Date of birth"
msgstr "जन्म तिथि"
-#: forms.py:900
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "नहीं दिखाया जाएगा,उम्र की गणना करने के लिए उपयोग किया,प्रारूप : YYYY-MM-DD"
-#: forms.py:906
+#: forms.py:923
msgid "Profile"
msgstr "रूपरेखा"
-#: forms.py:915
+#: forms.py:932
msgid "Screen name"
msgstr "स्क्रीन नाम"
-#: forms.py:946 forms.py:947
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "यह ईमेल पहले से ही पंजीकृत किया गया है,कृपया एक दूसरे उपयोग करें"
-#: forms.py:954
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "ईमेल टैग फिल्टर चुनें"
-#: forms.py:1001
+#: forms.py:1018
msgid "Asked by me"
msgstr "मेरे द्वारा पूछा गया"
-#: forms.py:1004
+#: forms.py:1021
msgid "Answered by me"
msgstr "मेरे द्वारा उत्तर दिया गया "
-#: forms.py:1007
+#: forms.py:1024
msgid "Individually selected"
msgstr "व्यक्तिगत रूप से चयनित"
-#: forms.py:1010
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "संपूर्ण फोरम (फ़िल्टर्ड टैग)"
-#: forms.py:1014
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "टिप्पणियाँ और प्रविष्टियाँ मुझे उल्लेखित करती है"
-#: forms.py:1095
+#: forms.py:1112
msgid "please choose one of the options above"
msgstr "उपरोक्त विकल्पों में से एक का चयन करें"
-#: forms.py:1098
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "ठीक है,चलो कोशिश करे!"
-#: forms.py:1101
+#: forms.py:1118
#, fuzzy, python-format
msgid "no %(sitename)s email please, thanks"
msgstr "कोई askbot ईमेल नहीं है कृपया, धन्यवाद"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
#: urls.py:41
msgid "about/"
msgstr "about/"
@@ -744,6 +765,25 @@ msgid ""
msgstr ""
"यह सेटिंग ईमेल द्वारा अधिसूचित प्रश्नों के विषय पंक्ति में लिखा टैग के लिए लागू होता है "
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "ईमेल के द्वारा प्रश्नों के पोस्ट करने की अनुमति"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -909,11 +949,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
-#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
+#, fuzzy, python-format
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
" एम्बेड वीडियो को सक्रिय करें.नोट: कृपया पढ़ें <a href=\"%(url)s> इस </ a> के पहले</ "
"em> पढ़ें."
@@ -972,17 +1014,22 @@ msgstr "शीर्षक की अधिकतम लंबाई (अक्
#: conf/forum_data_rules.py:106
msgid "Minimum length of question body (number of characters)"
-msgstr ""
+msgstr "प्रश्न शरीर का न्यूनतम लंबाई (वर्णों की संख्या)"
#: conf/forum_data_rules.py:117
msgid "Minimum length of answer body (number of characters)"
-msgstr ""
+msgstr "जवाब शरीर की न्यूनतम लम्बाई (वर्णों की संख्या)"
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "लेबल की आवश्यकता"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr "अनिवार्य टैग"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
@@ -990,11 +1037,11 @@ msgstr ""
"कम से कम इन टैग का कोई नया या नए संपादित सवाल के लिए आवश्यक हो सकती है .अनिवार्य टैग "
"वाइल्डकार्ड का हो सकता है , अगर वाइल्डकार्ड टैग सक्रिय है."
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr "टैग का लोअरकेस में करे "
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
@@ -1003,21 +1050,21 @@ msgstr ""
"ध्यान दें: इस जाँच के बाद, कृपया डेटाबेस के बैकअप करे , और एक प्रबंधन कमांड चलाएँ: "
"<code>python manage.py fix_question_tags</code> टैग को ग्लोबली पुनःनामकरण करे "
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr "टैग सूची का प्रारूप"
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
"प्रारूप का चयन या तो एक साधारण सूची के रूप या एक टैग क्लौड में, करके टैग को दिखाएं"
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "वाइल्डकार्ड टैग का प्रयोग करें"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
@@ -1025,48 +1072,48 @@ msgstr ""
"वाइल्डकार्ड टैग का इस्तेमाल अनुसरण करने या कई टैग की अनदेखी करने के लिए किया जा सकता है,"
"वैध वाइल्डकार्ड टैग के सबसे अंत में एकल वाइल्डकार्ड होता है."
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr "प्रविष्टियाँ के तहत प्रदर्शित करने के लिए टिप्पणी की डिफ़ॉल्ट रूप से अधिकतम संख्या"
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr "अधिकतम टिप्पणी की लंबाई < %(max_len)s हो सकती है."
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr "टिप्पणियों के संपादित करने के लिए समय सीमा"
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr "अगर अनियंत्रित हो तो , वहाँ कोई भी समय सीमा से टिप्पणी संपादित हो सकता है "
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr "कार्यवृत्त तक कोई टिप्पणी संपादित को करने की अनुमति"
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr "इस सेटिंग को सक्षम करने के लिए, पिछले जाँच करें"
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr "<Enter> कुंजी दबाकर टिप्पणी सहेजें"
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr "Ajax खोज के लिए खोज शब्द का न्यूनतम लंबाई"
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr "संगत डेटाबेस के बैकएंड सेटिंग से मेल खानी चाहिए"
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr "टेक्स्ट क्वेरी खोज में स्टिकी मत बनाओ"
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
@@ -1076,15 +1123,15 @@ msgstr ""
"है.अगर आप सर्च बार को डिफ़ॉल्ट स्थिति से दूर ले जाएँ या टेक्स्ट खोज क्वेरी के डिफ़ॉल्ट स्टिकी "
"व्यवहार को पसंद नहीं करना चाहते हो."
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "प्रश्न के अनुसार टैग की अधिकतम संख्या"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr " तयशुदा रूप से प्रश्नों के संख्या की सूची"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "\"अनुत्तरित प्रश्न\" का क्या मतलब होना चाहिए?"
@@ -1124,15 +1171,15 @@ msgstr "LDAP सेवा प्रदाता नाम"
#: conf/leading_sidebar.py:12
msgid "Common left sidebar"
-msgstr ""
+msgstr "सामान्य बाईं साइडबार"
#: conf/leading_sidebar.py:20
msgid "Enable left sidebar"
-msgstr ""
+msgstr "बाईं साइडबार सक्षम करें"
#: conf/leading_sidebar.py:29
msgid "HTML for the left sidebar"
-msgstr ""
+msgstr "बाईं साइडबार के लिए HTML"
#: conf/leading_sidebar.py:32
msgid ""
@@ -1142,8 +1189,9 @@ msgid ""
msgstr ""
#: conf/license.py:13
-msgid "Content LicensContent License"
-msgstr ""
+#, fuzzy
+msgid "Content License"
+msgstr "विषयवस्तु LicensContent लाइसेंस "
#: conf/license.py:21
msgid "Show license clause in the site footer"
@@ -1241,7 +1289,7 @@ msgstr ""
#: conf/markup.py:15
msgid "Markup in posts"
-msgstr ""
+msgstr "प्रविष्टियाँ में मार्कअप"
#: conf/markup.py:41
msgid "Enable code-friendly Markdown"
@@ -1336,7 +1384,7 @@ msgstr ""
#: conf/minimum_reputation.py:12
msgid "Karma thresholds"
-msgstr ""
+msgstr "कर्मा थ्रेसहोल्ड"
#: conf/minimum_reputation.py:22
msgid "Upvote"
@@ -1418,9 +1466,13 @@ msgstr ""
"जब एक खोज इंजन क्रॉलर एक लिंक पर एक rel = nofollow गुण देखेंगे - लिंक उपयोगकर्ताओं को "
"व्यक्तिगत साइट की रैंक की ओर गिनती नहीं होगी."
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
-msgstr ""
+msgstr "कर्मा के हानि और लाभ के नियम"
#: conf/reputation_changes.py:23
msgid "Maximum daily reputation gain per user"
@@ -1482,7 +1534,7 @@ msgstr "जब पक्ष के वोट को रद्द कर दि
#: conf/sidebar_main.py:12
msgid "Main page sidebar"
-msgstr ""
+msgstr "मुख्य पृष्ठ साइडबार"
#: conf/sidebar_main.py:20 conf/sidebar_profile.py:20
#: conf/sidebar_question.py:19
@@ -1550,15 +1602,15 @@ msgstr ""
#: conf/sidebar_profile.py:12
msgid "User profile sidebar"
-msgstr ""
+msgstr "उपयोगकर्ता प्रोफ़ाइल साइडबार"
#: conf/sidebar_question.py:11
msgid "Question page sidebar"
-msgstr ""
+msgstr "प्रश्न पृष्ठ साइडबार"
#: conf/sidebar_question.py:35
msgid "Show tag list in sidebar"
-msgstr ""
+msgstr "साइडबार में टैग सूची दिखाएँ"
#: conf/sidebar_question.py:37
msgid "Uncheck this if you want to hide the tag list from the sidebar "
@@ -1566,7 +1618,7 @@ msgstr ""
#: conf/sidebar_question.py:48
msgid "Show meta information in sidebar"
-msgstr ""
+msgstr "साइडबार में मेटा जानकारी दिखाएँ"
#: conf/sidebar_question.py:50
msgid ""
@@ -1584,11 +1636,11 @@ msgstr ""
#: conf/site_modes.py:64
msgid "Bootstrap mode"
-msgstr ""
+msgstr "बूटस्ट्रैप मोड"
#: conf/site_modes.py:74
msgid "Activate a \"Bootstrap\" mode"
-msgstr ""
+msgstr "\"बूटस्ट्रैप\" मोड सक्रिय करें"
#: conf/site_modes.py:76
msgid ""
@@ -1600,27 +1652,27 @@ msgstr ""
#: conf/site_settings.py:12
msgid "URLS, keywords & greetings"
-msgstr ""
+msgstr "यूआरएलों, खोजशब्दों & बधाई"
#: conf/site_settings.py:21
msgid "Site title for the Q&A forum"
-msgstr ""
+msgstr "Q&A फोरम के लिए साइट शीर्षक"
#: conf/site_settings.py:30
msgid "Comma separated list of Q&A site keywords"
-msgstr ""
+msgstr "Q&A इट खोजशब्दों की एक अल्पविराम विभाजित सूची"
#: conf/site_settings.py:39
msgid "Copyright message to show in the footer"
-msgstr ""
+msgstr "पादलेख में दिखाने के लिए कॉपीराइट संदेश"
#: conf/site_settings.py:49
msgid "Site description for the search engines"
-msgstr ""
+msgstr "खोज इंजन के लिए साइट विवरण"
#: conf/site_settings.py:58
msgid "Short name for your Q&A forum"
-msgstr ""
+msgstr "अपने Q&A फोरम के लिए संक्षिप्त नाम"
#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
@@ -1640,7 +1692,7 @@ msgstr ""
#: conf/site_settings.py:102
msgid "Feedback site URL"
-msgstr ""
+msgstr "प्रतिक्रिया साइट यूआरएल"
#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
@@ -1656,7 +1708,7 @@ msgstr ""
#: conf/skin_counter_settings.py:29
msgid "Background color for votes = 0"
-msgstr ""
+msgstr "मतों के लिए पृष्ठभूमि रंग = 0"
#: conf/skin_counter_settings.py:30 conf/skin_counter_settings.py:41
#: conf/skin_counter_settings.py:52 conf/skin_counter_settings.py:62
@@ -1669,27 +1721,27 @@ msgstr ""
#: 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 or hex value"
-msgstr ""
+msgstr "HTML रंग का नाम या हेक्स मान"
#: conf/skin_counter_settings.py:40
msgid "Foreground color for votes = 0"
-msgstr ""
+msgstr "मतों के लिए अग्रभूमि रंग = 0"
#: conf/skin_counter_settings.py:51
msgid "Background color for votes"
-msgstr ""
+msgstr "मतों के लिए पृष्ठभूमि रंग"
#: conf/skin_counter_settings.py:61
msgid "Foreground color for votes"
-msgstr ""
+msgstr "मतों के लिए अग्रभूमि रंग"
#: conf/skin_counter_settings.py:71
msgid "Background color for votes = MAX"
-msgstr ""
+msgstr "मतों के लिए पृष्ठभूमि रंग = MAX"
#: conf/skin_counter_settings.py:84
msgid "Foreground color for votes = MAX"
-msgstr ""
+msgstr "मतों के लिए अग्रभूमि रंग = MAX"
#: conf/skin_counter_settings.py:95
msgid "View counter value to give \"full color\""
@@ -1697,27 +1749,27 @@ msgstr ""
#: conf/skin_counter_settings.py:105
msgid "Background color for views = 0"
-msgstr ""
+msgstr "दृश्यों के लिए पृष्ठभूमि रंग = 0"
#: conf/skin_counter_settings.py:116
msgid "Foreground color for views = 0"
-msgstr ""
+msgstr "दृश्यों के लिए अग्रभूमि रंग = 0"
#: conf/skin_counter_settings.py:127
msgid "Background color for views"
-msgstr ""
+msgstr "दृश्यों के लिए पृष्ठभूमि रंग"
#: conf/skin_counter_settings.py:137
msgid "Foreground color for views"
-msgstr ""
+msgstr "दृश्यों के लिए अग्रभूमि रंग"
#: conf/skin_counter_settings.py:147
msgid "Background color for views = MAX"
-msgstr ""
+msgstr "दृश्यों के लिए पृष्ठभूमि रंग = MAX"
#: conf/skin_counter_settings.py:162
msgid "Foreground color for views = MAX"
-msgstr ""
+msgstr "दृश्यों के लिए अग्रभूमि रंग = MAX"
#: conf/skin_counter_settings.py:173
msgid "Answer counter value to give \"full color\""
@@ -1729,27 +1781,27 @@ msgstr "उत्तरों के लिए पृष्ठभूमिक
#: conf/skin_counter_settings.py:195
msgid "Foreground color for answers = 0"
-msgstr ""
+msgstr "जवाब के लिए अग्रभूमि रंग = 0"
#: conf/skin_counter_settings.py:205
msgid "Background color for answers"
-msgstr ""
+msgstr "उत्तरों के लिए पृष्ठभूमिक रंग"
#: conf/skin_counter_settings.py:215
msgid "Foreground color for answers"
-msgstr ""
+msgstr "जवाब के लिए अग्रभूमि रंग"
#: conf/skin_counter_settings.py:227
msgid "Background color for answers = MAX"
-msgstr ""
+msgstr "उत्तरों के लिए पृष्ठभूमिक रंग = MAX"
#: conf/skin_counter_settings.py:238
msgid "Foreground color for answers = MAX"
-msgstr ""
+msgstr " जवाब के लिए अग्रभूमि रंग = MAX"
#: conf/skin_counter_settings.py:251
msgid "Background color for accepted"
-msgstr ""
+msgstr "स्वीकृति के लिए पृष्ठभूमि रंग "
#: conf/skin_counter_settings.py:261
msgid "Foreground color for accepted answer"
@@ -2031,11 +2083,10 @@ msgid "Use automatic avatars from gravatar.com"
msgstr ""
#: conf/user_settings.py:85
-#, python-format
msgid ""
"Check this option if you want to allow the use of gravatar.com for avatars. "
-"Please, note that this feature might take about 10 minutes to become "
-"100% effective. You will have to enable uploaded avatars as well. For more "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
"html#uploaded-avatars\">this page</a>."
msgstr ""
@@ -2193,7 +2244,7 @@ msgstr ""
msgid "least voted"
msgstr ""
-#: const/__init__.py:51 const/message_keys.py:23
+#: const/__init__.py:51
msgid "relevance"
msgstr ""
@@ -2329,7 +2380,7 @@ msgstr ""
msgid "[deleted]"
msgstr ""
-#: const/__init__.py:211 views/readers.py:565
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr ""
@@ -2417,12 +2468,16 @@ msgstr ""
msgid "click to see most relevant questions"
msgstr ""
+#: const/message_keys.py:23
+msgid "by relevance"
+msgstr ""
+
#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr ""
#: const/message_keys.py:25
-msgid "date"
+msgid "by date"
msgstr ""
#: const/message_keys.py:26
@@ -2434,10 +2489,7 @@ msgid "click to see the least recently updated questions"
msgstr ""
#: const/message_keys.py:28
-#: skins/default/templates/user_profile/user_recent.html:4
-#: skins/default/templates/user_profile/user_tabs.html:29
-#: skins/default/templates/user_profile/user_tabs.html:31
-msgid "activity"
+msgid "by activity"
msgstr ""
#: const/message_keys.py:29
@@ -2449,9 +2501,8 @@ msgid "click to see the least answered questions"
msgstr ""
#: const/message_keys.py:31
-#, fuzzy
-msgid "answers"
-msgstr "answers/"
+msgid "by answers"
+msgstr ""
#: const/message_keys.py:32
msgid "click to see the most answered questions"
@@ -2462,9 +2513,7 @@ msgid "click to see least voted questions"
msgstr ""
#: const/message_keys.py:34
-#: skins/default/templates/user_profile/user_tabs.html:36
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
+msgid "by votes"
msgstr ""
#: const/message_keys.py:35
@@ -2478,7 +2527,7 @@ msgid ""
"reach a resolution."
msgstr ""
-#: const/message_keys.py:45 models/__init__.py:787
+#: const/message_keys.py:45 models/__init__.py:788
msgid ""
"Sorry, your account appears to be suspended and you cannot make new posts "
"until this issue is resolved. You can, however edit your existing posts. "
@@ -2582,7 +2631,7 @@ msgid "%(site)s user name and password"
msgstr ""
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2778,7 +2827,7 @@ msgstr ""
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:136
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr ""
@@ -2838,37 +2887,6 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
@@ -2926,74 +2944,74 @@ msgstr[1] ""
msgid "Please log in to use %s"
msgstr ""
-#: models/__init__.py:319
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:323
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:336
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr ""
-#: models/__init__.py:358
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:366
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:389
+#: models/__init__.py:390
msgid "Sorry, you cannot vote for your own posts"
msgstr ""
-#: models/__init__.py:393
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:398
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:408
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ""
-#: models/__init__.py:414
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ""
-#: models/__init__.py:429
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr ""
-#: models/__init__.py:430
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
-#: models/__init__.py:432
+#: models/__init__.py:433
#, python-format
msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3004,56 +3022,56 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:518
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:522
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:552
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:569
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:584
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:588
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:593
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:600
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:663
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3063,93 +3081,93 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:678
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:682
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:686
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:706
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:710
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:714
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:723
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:747
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:753
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:774
+#: models/__init__.py:775
msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-#: models/__init__.py:782
+#: models/__init__.py:783
msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-#: models/__init__.py:793
+#: models/__init__.py:794
#, python-format
msgid ""
"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:814
+#: models/__init__.py:815
#, python-format
msgid ""
"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
"offensive flags per day."
msgstr ""
-#: models/__init__.py:826
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:832
+#: models/__init__.py:833
msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
-#: models/__init__.py:836
+#: models/__init__.py:837
msgid ""
"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
msgstr ""
-#: models/__init__.py:842
+#: models/__init__.py:843
#, python-format
msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgid_plural ""
@@ -3157,175 +3175,175 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:861
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:862
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:886
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:893
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:897
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:901
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:920
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:924
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:928
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:952
+#: models/__init__.py:953
msgid "sorry, but older votes cannot be revoked"
msgstr ""
-#: models/__init__.py:1438 utils/functions.py:78
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr ""
-#: models/__init__.py:1440
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1442
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1444
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1446
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1447
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1449
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1622 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr ""
-#: models/__init__.py:1718
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr ""
-#: models/__init__.py:1720
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1722
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr ""
-#: models/__init__.py:1724
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1726
+#: models/__init__.py:1757
msgid "Registered User"
msgstr ""
-#: models/__init__.py:1728
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1730
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1839
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr ""
-#: models/__init__.py:1849
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1856
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1863
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1874
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1878
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2354
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr ""
-#: models/__init__.py:2491
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2694 views/commands.py:457
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3626,6 +3644,10 @@ msgstr ""
msgid "\" and more"
msgstr ""
+#: models/reply_by_email.py:71
+msgid "edited by email"
+msgstr ""
+
#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
@@ -3689,17 +3711,17 @@ msgstr ""
msgid "No email"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:56
-#: skins/common/templates/authopenid/signin.html:106
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr ""
@@ -3900,8 +3922,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -3941,9 +3963,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -3977,81 +3999,85 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
#: skins/common/templates/authopenid/signin.html:93
+msgid "Please, sign in"
+msgstr ""
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:101 utils/forms.py:169
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:126
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:154
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:155
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:156
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:170
+#: skins/common/templates/authopenid/signin.html:177
#: skins/common/templates/question/answer_controls.html:13
-#: skins/common/templates/question/question_controls.html:10
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:172
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:185
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:190
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:192
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:195
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:206
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:208
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
@@ -4162,7 +4188,7 @@ msgid "link"
msgstr ""
#: skins/common/templates/question/answer_controls.html:13
-#: skins/common/templates/question/question_controls.html:10
+#: skins/common/templates/question/question_controls.html:4
msgid "undelete"
msgstr ""
@@ -4172,29 +4198,29 @@ msgid "remove offensive flag"
msgstr "आपत्तिजनक ध्वजों को देखे"
#: skins/common/templates/question/answer_controls.html:21
-#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:16
msgid "remove flag"
msgstr ""
#: skins/common/templates/question/answer_controls.html:26
#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
#: skins/common/templates/question/question_controls.html:20
-#: skins/common/templates/question/question_controls.html:26
-#: skins/common/templates/question/question_controls.html:33
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
#: skins/common/templates/question/answer_controls.html:28
#: skins/common/templates/question/answer_controls.html:37
-#: skins/common/templates/question/question_controls.html:28
-#: skins/common/templates/question/question_controls.html:35
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr ""
#: skins/common/templates/question/answer_controls.html:41
-#: skins/common/templates/question/question_controls.html:42
-#: skins/default/templates/macros.html:307
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
#: skins/default/templates/revisions.html:38
#: skins/default/templates/revisions.html:41
msgid "edit"
@@ -4221,32 +4247,39 @@ msgstr ""
msgid "close date %(closed_at)s"
msgstr ""
-#: skins/common/templates/question/question_controls.html:12
+#: skins/common/templates/question/question_controls.html:6
msgid "reopen"
msgstr ""
-#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:8
#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr ""
-#: skins/common/templates/question/question_controls.html:41
+#: skins/common/templates/question/question_controls.html:35
msgid "retag"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
-msgstr ""
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
+msgstr "देश फ़ील्ड की आवश्यकता है"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "लेबल "
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
@@ -4892,25 +4925,42 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr ""
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr ""
#: skins/default/templates/macros.html:16
-#: skins/default/templates/macros.html:432
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
#: skins/default/templates/macros.html:19
-#: skins/default/templates/macros.html:435
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
#: skins/default/templates/macros.html:20
-#: skins/default/templates/macros.html:436
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
@@ -4950,80 +5000,80 @@ msgstr ""
msgid "updated"
msgstr ""
-#: skins/default/templates/macros.html:198
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr ""
-#: skins/default/templates/macros.html:300
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr ""
-#: skins/default/templates/macros.html:503 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr ""
-#: skins/default/templates/macros.html:512
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr ""
-#: skins/default/templates/macros.html:527
-#: skins/default/templates/macros.html:528
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr ""
-#: skins/default/templates/macros.html:539
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr ""
-#: skins/default/templates/macros.html:541
-#: skins/default/templates/macros.html:548
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
#, python-format
msgid "page %(num)s"
msgstr ""
-#: skins/default/templates/macros.html:552
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr ""
-#: skins/default/templates/macros.html:603
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr ""
-#: skins/default/templates/macros.html:606
+#: skins/default/templates/macros.html:610
#, python-format
msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/macros.html:609
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:624
-#: skins/default/templates/macros.html:625
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:627
-#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:633
-#: skins/default/templates/macros.html:634
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -5032,20 +5082,34 @@ msgstr ""
msgid "Questions"
msgstr ""
-#: skins/default/templates/question.html:98
+#: skins/default/templates/question.html:110
msgid "post a comment / <strong>some</strong> more"
msgstr ""
-#: skins/default/templates/question.html:101
+#: skins/default/templates/question.html:113
msgid "see <strong>some</strong> more"
msgstr ""
-#: skins/default/templates/question.html:105
+#: skins/default/templates/question.html:117
#: skins/default/templates/question/javascript.html:20
#, fuzzy
msgid "post a comment"
msgstr "टिप्पणी छोड़ दे "
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr ""
+
+#: skins/default/templates/question.html:140
+msgid "Post Your Answer"
+msgstr ""
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+msgid "Login/Signup to Post"
+msgstr ""
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
msgid "Edit question"
@@ -5108,6 +5172,13 @@ msgstr ""
msgid "Reopen this question"
msgstr ""
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5322,21 +5393,21 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5371,11 +5442,6 @@ msgstr ""
msgid "most voted answers will be shown first"
msgstr ""
-#: skins/default/templates/question/content.html:40
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer Your Own Question"
-msgstr ""
-
#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr ""
@@ -5417,15 +5483,6 @@ msgid ""
"best questions and answers!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:45
-#: skins/default/templates/widgets/ask_form.html:41
-msgid "Login/Signup to Post"
-msgstr ""
-
-#: skins/default/templates/question/new_answer_form.html:50
-msgid "Post Your Answer"
-msgstr ""
-
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
msgid ""
@@ -5441,77 +5498,77 @@ msgstr ""
msgid "email"
msgstr ""
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr ""
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr ""
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr ""
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr ""
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr ""
-#: skins/default/templates/question/sidebar.html:44
+#: skins/default/templates/question/sidebar.html:46
msgid "Stats"
msgstr ""
-#: skins/default/templates/question/sidebar.html:46
+#: skins/default/templates/question/sidebar.html:48
#, fuzzy
msgid "Asked"
msgstr "मेरे द्वारा पूछा गया"
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "Seen"
msgstr ""
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr ""
-#: skins/default/templates/question/sidebar.html:52
+#: skins/default/templates/question/sidebar.html:54
msgid "Last updated"
msgstr ""
-#: skins/default/templates/question/sidebar.html:60
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr ""
@@ -5588,8 +5645,9 @@ msgid ""
msgstr ""
#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
msgid "Stop Email"
-msgstr ""
+msgstr "ईमेलः"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5815,6 +5873,12 @@ msgstr ""
msgid "%(username)s's network is empty"
msgstr ""
+#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
+#: skins/default/templates/user_profile/user_tabs.html:31
+msgid "activity"
+msgstr ""
+
#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
@@ -5924,6 +5988,11 @@ msgstr ""
msgid "user vote record"
msgstr ""
+#: skins/default/templates/user_profile/user_tabs.html:36
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr ""
+
#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr ""
@@ -6252,6 +6321,37 @@ msgid_plural "%(min)d mins ago"
msgstr[0] ""
msgstr[1] ""
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6301,21 +6401,21 @@ msgstr ""
msgid "email update frequency has been set to daily"
msgstr ""
-#: views/commands.py:461
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:470
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:596
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr ""
-#: views/commands.py:616
+#: views/commands.py:620
msgid "Please sign in to delete/restore posts"
msgstr ""
@@ -6324,19 +6424,19 @@ msgstr ""
msgid "About %(site)s"
msgstr ""
-#: views/meta.py:86
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
-#: views/meta.py:87
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr ""
-#: views/meta.py:96
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/meta.py:100
+#: views/meta.py:106
msgid "Privacy policy"
msgstr ""
@@ -6347,7 +6447,7 @@ msgid_plural "%(q_num)s questions, tagged"
msgstr[0] ""
msgstr[1] ""
-#: views/readers.py:387
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
@@ -6413,21 +6513,21 @@ msgstr ""
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
-#: views/writers.py:70
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr ""
-#: views/writers.py:90
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
-#: views/writers.py:98
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:205
+#: views/writers.py:189
msgid ""
"<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 "
@@ -6436,29 +6536,29 @@ msgid ""
"Login takes about 30 seconds, initial signup takes a minute or less."
msgstr ""
-#: views/writers.py:482
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr ""
-#: views/writers.py:588
+#: views/writers.py:572
#, 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:605
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
-#: views/writers.py:635
+#: views/writers.py:619
#, 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:656
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
diff --git a/askbot/locale/hi/LC_MESSAGES/djangojs.po b/askbot/locale/hi/LC_MESSAGES/djangojs.po
index e5ac98f3..d2c85414 100644
--- a/askbot/locale/hi/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/hi/LC_MESSAGES/djangojs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-11 22:22-0500\n"
+"POT-Creation-Date: 2012-04-18 18:53-0500\n"
"PO-Revision-Date: 2012-02-27 09:25+0000\n"
"Last-Translator: Chandan kumar <chandankumar.093047@gmail.com>\n"
"Language-Team: Hindi (http://www.transifex.net/projects/p/askbot/language/"
@@ -136,15 +136,15 @@ msgstr "आपकी प्रविष्टियाँ अभी पुन
msgid "post deleted"
msgstr "आपकी प्रविष्टियाँ को मिटा दिया गया है "
-#: skins/common/media/js/post.js:1202
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "टिप्पणी जोड़ें"
-#: skins/common/media/js/post.js:1205
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "टिप्पणी सहेजे "
-#: skins/common/media/js/post.js:1870
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "प्रश्न के शीर्षक (>10 अक्षर) दर्ज करें"
diff --git a/askbot/locale/hu/LC_MESSAGES/django.po b/askbot/locale/hu/LC_MESSAGES/django.po
index 0c067154..30604e9b 100644
--- a/askbot/locale/hu/LC_MESSAGES/django.po
+++ b/askbot/locale/hu/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:54-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Evgeny Fadeev <evgeny.fadeev@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21,15 +21,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr ""
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr ""
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr ""
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr ""
@@ -56,24 +56,33 @@ msgstr ""
msgid "please enter a descriptive title for your question"
msgstr ""
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] ""
msgstr[1] ""
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr ""
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr ""
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -84,356 +93,377 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr ""
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] ""
msgstr[1] ""
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:227
+#: forms.py:249
#, 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] ""
msgstr[1] ""
-#: forms.py:235
-msgid "use-these-chars-in-tags"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
msgstr ""
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr ""
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
msgstr ""
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr ""
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr ""
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr ""
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr ""
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr ""
-#: forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr ""
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr ""
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr ""
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr ""
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr ""
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr ""
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr ""
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr ""
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr ""
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr ""
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr ""
-#: forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr ""
-#: forms.py:580
+#: forms.py:531
msgid "Email:"
msgstr ""
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr ""
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr ""
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr ""
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr ""
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr ""
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr ""
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr ""
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr ""
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr ""
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr ""
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr ""
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr ""
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr ""
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr ""
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr ""
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr ""
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr ""
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr ""
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr ""
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "no askbot email please, thanks"
-#: forms.py:1157
-msgid "please choose one of the options above"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
msgstr ""
-#: urls.py:52
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
+#: urls.py:41
msgid "about/"
msgstr ""
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr ""
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr ""
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr ""
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr ""
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr ""
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+#, fuzzy
+msgid "questions"
+msgstr "Tags"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr ""
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr ""
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr ""
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr ""
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr ""
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr ""
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr ""
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr ""
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr ""
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr ""
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr ""
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr ""
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr ""
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr ""
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr ""
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr ""
@@ -561,151 +591,173 @@ msgid ""
msgstr ""
#: conf/email.py:38
+msgid "Enable email alerts"
+msgstr ""
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr ""
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr ""
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr ""
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr ""
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr ""
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr ""
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr ""
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr ""
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+msgid "Enable posting answers and comments by email"
+msgstr ""
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -736,15 +788,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -752,11 +804,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -764,70 +816,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr ""
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -866,11 +902,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -926,107 +964,162 @@ msgid "Minimum length of answer body (number of characters)"
msgstr ""
#: conf/forum_data_rules.py:126
+msgid "Are tags required?"
+msgstr ""
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr ""
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr ""
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr ""
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+msgid "Common left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:20
+msgid "Enable left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1100,16 +1193,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1273,6 +1366,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1470,27 +1567,27 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr ""
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1615,21 +1712,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1637,40 +1734,40 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr ""
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1682,11 +1779,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1695,21 +1792,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1718,21 +1815,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1741,19 +1838,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1764,19 +1861,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1841,38 +1938,65 @@ msgstr ""
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
msgid "User settings"
msgstr ""
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "Your email <i>(never shared)</i>"
+
+#: conf/user_settings.py:41
msgid "Allow account recovery by email"
msgstr ""
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+msgid "Default avatar for users"
+msgstr ""
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -1979,326 +2103,339 @@ msgstr ""
msgid "too localized"
msgstr ""
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr ""
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr ""
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr ""
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr ""
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr ""
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr ""
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr ""
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr ""
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr ""
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr ""
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr ""
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr ""
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr ""
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr ""
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr ""
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr ""
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr ""
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr ""
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr ""
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr ""
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr ""
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "received badge"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr ""
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr ""
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr ""
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr ""
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr ""
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr ""
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr ""
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr ""
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr ""
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr ""
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr ""
-#: const/__init__.py:142
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr ""
-#: const/__init__.py:146
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr ""
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr ""
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "answered question"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "commented question"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr ""
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr ""
+#, fuzzy
+msgid "answered question"
+msgstr "Post Your Answer"
+
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "oldest"
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr ""
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr ""
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr ""
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr ""
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr ""
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr ""
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr ""
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr ""
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr ""
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr ""
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr ""
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr ""
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
msgid "wavatar"
msgstr ""
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr ""
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr ""
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr ""
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr ""
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr ""
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr ""
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr ""
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "relevance"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr ""
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "date"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr ""
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr ""
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "activity"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr ""
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr ""
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "answers"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr ""
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr ""
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "votes"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr ""
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr ""
@@ -2347,11 +2484,11 @@ msgid "Your user name (<i>required</i>)"
msgstr ""
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "sorry, there is no such user name"
+msgid "sorry, there is no such user name"
+msgstr ""
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr ""
@@ -2389,7 +2526,7 @@ msgid "%(site)s user name and password"
msgstr ""
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2471,78 +2608,78 @@ msgstr ""
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr ""
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr ""
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
"Your email needs to be validated. Please see details <a "
"id='validate_email_alert' href='%(details_url)s'>here</a>."
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr ""
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2550,28 +2687,28 @@ msgstr ""
msgid "Site"
msgstr ""
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr ""
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr ""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr ""
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr ""
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr ""
@@ -2588,7 +2725,7 @@ msgstr "karma"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
#, fuzzy
msgid "Change password"
msgstr "Password"
@@ -2649,121 +2786,52 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr ""
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
msgstr[1] ""
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
-"<p>Dear %(name)s,</p></p>The following question has been updated on the Q&A "
-"forum:</p>"
msgstr[1] ""
-"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
-"the Q&A forum:</p>"
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr ""
-#: 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 ""
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-"<p>Please remember that you can always <a "
-"href='%(email_settings_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 %(admin_email)s.</"
-"p><p>Sincerely,</p><p>Your friendly Q&A forum server.</p>"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2775,89 +2843,75 @@ msgstr[1] ""
msgid "Please log in to use %s"
msgstr ""
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr ""
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "Sorry, you cannot vote for your own posts"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ">%(points)s points required to upvote "
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ">%(points)s points required to downvote "
-#: models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr ""
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "sorry, file uploading requires karma >%(min_rep)s"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
-
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2868,56 +2922,56 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:510
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -2927,278 +2981,270 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "You have flagged this question before and cannot do it more than once"
-
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-"Sorry, since your account is blocked you cannot flag posts as offensive"
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
+#: models/__init__.py:783
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:768
+#: models/__init__.py:794
#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr ""
+msgid ""
"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
"required"
+msgstr ""
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr ""
+msgid ""
"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
"offensive flags per day."
+msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
-msgid "blocked users cannot remove flags"
+#: models/__init__.py:833
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr "Sorry, since your account is blocked you cannot remove flags"
-#: models/__init__.py:805
-msgid "suspended users cannot remove flags"
-msgstr ""
+#: models/__init__.py:837
+msgid ""
"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
+#: models/__init__.py:843
#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
-msgstr[0] ""
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgstr[0] ""
msgstr[1] ""
-"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "sorry, but older votes cannot be revoked"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr ""
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr ""
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr ""
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr ""
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr ""
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr ""
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr ""
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3456,154 +3502,136 @@ msgstr ""
msgid "Created a tag used by %(num)s questions"
msgstr ""
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr ""
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr ""
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr ""
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr ""
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr ""
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr ""
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr ""
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr ""
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr ""
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr ""
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr ""
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Change Email"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr ""
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr ""
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr ""
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr ""
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr ""
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr ""
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr ""
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr ""
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr ""
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr ""
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr ""
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Change Email"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3613,41 +3641,39 @@ msgstr "Your email <i>(never shared)</i>"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
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/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
+msgid ""
"<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 "
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
"else."
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
msgstr ""
-"<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
-"anyone, must be valid)"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
#, fuzzy
msgid "Save Email"
msgstr "Change Email"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3655,174 +3681,115 @@ msgstr "Change Email"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
#, fuzzy
msgid "Validate email"
msgstr "Change Email"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
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/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
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/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, 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 "
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:69
-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 "
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
"updates</strong> - then will be notified about changes <strong>once a day</"
-"strong> or less frequently."
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "Validation email not sent"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Change Email"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, 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 "
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
"necessary."
+msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "karma"
-#: skins/common/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/common/templates/authopenid/complete.html:30
-#, 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/common/templates/authopenid/complete.html:34
-#, 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/common/templates/authopenid/complete.html:37
-#, 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/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr ""
-"<strong>Email Address</strong> (<i>will <strong>not</strong> be shared with "
-"anyone, must be valid</i>)"
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "karma"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
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/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "Signup"
-
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
msgstr ""
@@ -3845,9 +3812,10 @@ msgstr ""
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
@@ -3866,8 +3834,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -3914,9 +3882,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -3950,126 +3918,92 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
#: skins/common/templates/authopenid/signin.html:93
+msgid "Please, sign in"
+msgstr ""
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
#, fuzzy
msgid "Password"
msgstr "Password"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Sign in"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "Password"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "Last updated"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "sorry, but older votes cannot be revoked"
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr "With the OpenID you don't need to create new username and password."
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr "You can safely re-use the same login for all OpenID-enabled websites."
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-"
-"enabled."
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr "OpenID is based on an open standard, supported by many organizations."
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr ""
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr ""
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
msgstr ""
@@ -4083,29 +4017,29 @@ msgid "Create login name and password"
msgstr ""
#: skins/common/templates/authopenid/signup_with_password.html:26
-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 "
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Signup"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr ""
@@ -4165,67 +4099,68 @@ msgstr ""
msgid "Delete These"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "permanent link"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "Post Your Answer"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "link"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr ""
+
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr ""
+
+#: skins/common/templates/question/answer_controls.html:19
+msgid "remove offensive flag"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
-msgid "remove all flags"
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+msgid "remove flag"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-msgid "remove flag"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Post Your Answer"
-
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
msgid "mark this answer as correct (click again to undo)"
msgstr ""
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr ""
-
#: skins/common/templates/question/closed_question_info.html:2
#, python-format
msgid ""
@@ -4239,61 +4174,69 @@ msgid "close date %(closed_at)s"
msgstr ""
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr ""
-
-#: skins/common/templates/question/question_controls.html:13
#, fuzzy
msgid "reopen"
msgstr "You can safely re-use the same login for all OpenID-enabled websites."
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr ""
+
+#: skins/common/templates/widgets/edit_post.html:22
+msgid ", one of these is required"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "Tags"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr ""
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Tags"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
#, fuzzy
msgid "Interesting tags"
msgstr "Tags"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
msgid "add"
msgstr ""
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
#, fuzzy
msgid "Ignored tags"
msgstr "Retag question"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr ""
@@ -4343,7 +4286,7 @@ msgid "back to previous page"
msgstr ""
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
#, fuzzy
msgid "see all questions"
msgstr "Ask Your Question"
@@ -4375,11 +4318,6 @@ msgstr "Post Your Answer"
msgid "see tags"
msgstr "Tags"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
#, fuzzy
@@ -4410,17 +4348,20 @@ msgstr ""
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr ""
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
msgstr "Ask Your Question"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr ""
@@ -4435,8 +4376,8 @@ msgid "Badge \"%(name)s\""
msgstr ""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, python-format
msgid "%(description)s"
msgstr ""
@@ -4447,11 +4388,7 @@ msgid_plural "users received this badge:"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Badges"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
#, fuzzy
msgid "Badges"
msgstr "Badges"
@@ -4461,48 +4398,47 @@ msgid "Community gives you awards for your questions, answers and votes."
msgstr ""
#: skins/default/templates/badges.html:8
-#, python-format
+#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"Below is the list of available badges and number \n"
" of times each type of badge has been awarded. Have ideas about fun "
"badges? Please, give us your <a href='%(feedback_faq_url)s'>feedback</a>\n"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Badge levels"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr ""
-"Gold badge is the highest award in this community. To obtain it have to show "
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr ""
-"silver badge: occasionally awarded for the very high quality contributions"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr ""
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "bronze badge: often given as a special honor"
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
#, fuzzy
msgid "Close question"
@@ -4521,11 +4457,10 @@ msgstr ""
msgid "OK to close"
msgstr ""
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4544,15 +4479,17 @@ msgid ""
msgstr ""
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Before you ask - please make sure to search for a similar question. You can "
"search questions by their title or tags."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "What kinds of questions should be avoided?"
#: skins/default/templates/faq_static.html:11
@@ -4568,14 +4505,11 @@ msgstr "What kinds of questions should be avoided?"
#: skins/default/templates/faq_static.html:14
msgid ""
-"is a Q&A site, not a discussion group. Therefore - please avoid having "
-"discussions in your answers, comment facility allows some space for brief "
-"discussions."
-msgstr ""
"is a <strong>question and answer</strong> site - <strong>it is not a "
"discussion group</strong>. Please avoid holding debates in your answers as "
"they tend to dilute the essense of questions and answers. For the brief "
"discussions please use commenting facility."
+msgstr ""
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4590,24 +4524,26 @@ msgid "This website is moderated by the users."
msgstr ""
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"Karma system allows users to earn rights to perform a variety of moderation "
"tasks"
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "How does karma system work?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr ""
+msgid ""
"When a question or answer is upvoted, the user who posted them will gain "
-"some points, which are called \"karma points\". These points serve as a "
+"some points, which are called \\\"karma points\\\". These points serve as a "
"rough measure of the community trust to him/her. Various moderation tasks "
"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -4627,22 +4563,17 @@ msgstr ""
msgid "upvote"
msgstr ""
-#: skins/default/templates/faq_static.html:37
-#, fuzzy
-msgid "use tags"
-msgstr "Tags"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
#, fuzzy
msgid "add comments"
msgstr "post a comment"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr ""
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr ""
@@ -4652,36 +4583,35 @@ msgstr ""
"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."
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr ""
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
#, fuzzy
msgid "retag other's questions"
msgstr "Post Your Answer"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr ""
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "answers"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "\"delete any comment"
+msgid "delete any comment"
msgstr "post a comment"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "How to change my picture (gravatar) and what is gravatar?"
-
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
msgstr ""
+
+#: skins/default/templates/faq_static.html:70
+msgid ""
"<p>The picture that appears on the users profiles is called "
"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
@@ -4695,50 +4625,51 @@ msgstr ""
"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
"be sure to use the same email address that you used to register with us). "
"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr ""
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
msgstr ""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr ""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
#, fuzzy
msgid "Still have questions?"
msgstr "Ask Your Question"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Please <a href='%(ask_question_url)s'>ask</a> your question, help make our "
"community better!"
@@ -4794,6 +4725,68 @@ msgid ""
"Hello, this is a %(site_title)s forum feedback message.\n"
msgstr ""
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "Choose screen name"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -4895,178 +4888,159 @@ msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr ""
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-msgid "i like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr ""
-#: skins/default/templates/macros.html:43
-msgid "i dont like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr "Sorry, anonymous users cannot vote"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr ""
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
#, fuzzy
msgid "answered"
msgstr "answers"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr ""
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
#, fuzzy
msgid "updated"
msgstr "Last updated"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr ""
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
#, fuzzy
msgid "delete this comment"
msgstr "post a comment"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "post a comment"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/default/templates/macros.html:310
-#, 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/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr ""
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr ""
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr ""
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr ""
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "page %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr ""
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr ""
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, fuzzy, python-format
msgid "responses for %(username)s"
msgstr "Choose screen name"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -5076,11 +5050,37 @@ msgstr ""
msgid "Questions"
msgstr "Tags"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
+#: skins/default/templates/question.html:110
+msgid "post a comment / <strong>some</strong> more"
msgstr ""
+#: skins/default/templates/question.html:113
+msgid "see <strong>some</strong> more"
+msgstr ""
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "post a comment"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+#, fuzzy
+msgid "Answer Your Own Question"
+msgstr "Post Your Answer"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "most voted"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Login/Signup to Post"
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
#, fuzzy
@@ -5089,8 +5089,9 @@ msgstr "Ask Your Question"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Retag question"
+#, fuzzy
+msgid "Retag question"
+msgstr "Tags"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -5146,6 +5147,13 @@ msgstr "Post Your Answer"
msgid "Reopen this question"
msgstr "Post Your Answer"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
#, fuzzy
@@ -5174,17 +5182,17 @@ msgstr ""
msgid "Subscribe"
msgstr ""
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Tags"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Tags"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
msgstr ""
@@ -5204,7 +5212,7 @@ msgstr ""
msgid "by popularity"
msgstr ""
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr ""
@@ -5218,8 +5226,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "karma"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5251,7 +5261,7 @@ msgstr ""
msgid "Nothing found."
msgstr ""
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5267,41 +5277,41 @@ msgstr ""
msgid "Tagged"
msgstr ""
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
#, fuzzy
msgid "Search tips:"
msgstr "Tips"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr ""
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
msgid " or "
msgstr ""
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
#, fuzzy
msgid "reset tags"
msgstr "Tags"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr ""
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr ""
@@ -5346,21 +5356,21 @@ msgstr ""
"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."
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr ""
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
#, fuzzy
msgid "Please, post your question!"
msgstr "Ask Your Question"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
#, fuzzy
msgid "subscribe to the questions feed"
msgstr "Post Your Answer"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5372,21 +5382,21 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5396,95 +5406,73 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
msgstr[1] ""
+#: skins/default/templates/question/answer_tab_bar.html:11
+msgid "Sort by »"
+msgstr ""
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "oldest"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "newest"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "most voted"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-#, fuzzy
-msgid "Answer Your Own Question"
-msgstr "Post Your Answer"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "Login/Signup to Post"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
#, fuzzy
msgid "Your answer"
msgstr "most voted"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
"<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/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:36
+msgid ""
"<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/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+"not like)!"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
"<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/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
-msgstr "Login/Signup to Post"
-
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Post Your Answer"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5501,24 +5489,24 @@ msgstr ""
msgid "email"
msgstr ""
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Tags"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr ""
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr ""
@@ -5528,33 +5516,33 @@ msgstr ""
"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."
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "Last updated"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr ""
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr ""
@@ -5563,57 +5551,44 @@ msgid "Stats"
msgstr ""
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "Asked"
+msgid "Asked"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "Seen"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr ""
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "Last updated"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
#, fuzzy
msgid "Related questions"
msgstr "Tags"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-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/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+#, fuzzy
+msgid "Email me when there are any new answers"
msgstr ""
"<strong>Notify me</strong> weekly when there are any new answers or updates"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
+msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
-"<strong>Notify me</strong> immediately when there are any new answers or "
-"updates"
+"<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/subscribe_by_email_prompt.html:16
-#, python-format
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
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/subscribe_by_email_prompt.html:21
-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."
+msgstr ""
#: skins/default/templates/user_profile/user.html:12
#, python-format
@@ -5647,8 +5622,13 @@ msgstr ""
msgid "Screen Name"
msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "sorry, but older votes cannot be revoked"
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
#, fuzzy
msgid "Update"
msgstr "date"
@@ -5668,18 +5648,20 @@ msgstr ""
"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_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr ""
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Stop Email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5706,18 +5688,22 @@ msgid "flagged items (%(flag_count)s)"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
msgid "seen"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
msgid "none"
msgstr ""
@@ -5733,6 +5719,15 @@ msgstr ""
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+msgid "remove flags"
+msgstr ""
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "post a comment"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr ""
@@ -5746,7 +5741,8 @@ msgid "real name"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "member since"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5754,7 +5750,8 @@ msgid "last seen"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
+#, fuzzy
+msgid "website"
msgstr "website"
#: skins/default/templates/user_profile/user_info.html:75
@@ -5901,20 +5898,17 @@ msgid "%(username)s's network is empty"
msgstr ""
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
#, fuzzy
msgid "activity"
msgstr "activity"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr ""
@@ -5937,21 +5931,17 @@ msgstr[0] ""
msgstr[1] ""
#: skins/default/templates/user_profile/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] ""
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "answers"
+msgstr[1] "answers"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr ""
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr ""
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -5989,14 +5979,14 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, 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_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "Tips"
@@ -6006,7 +5996,7 @@ msgstr "Tips"
msgid "User profile"
msgstr "User login"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr ""
@@ -6015,48 +6005,40 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "Graph of user karma"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "karma"
-
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "activity"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
+#: skins/default/templates/user_profile/user_votes.html:4
+#, fuzzy
+msgid "votes"
msgstr "votes"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr ""
-#: skins/default/templates/user_profile/user_votes.html:4
-#, fuzzy
-msgid "votes"
-msgstr "votes"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "Tips"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "ask a question interesting to this community"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6071,7 +6053,9 @@ msgstr ""
"best questions and answers!"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
msgstr "provide enough details"
#: skins/default/templates/widgets/answer_edit_tips.html:15
@@ -6092,7 +6076,8 @@ msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Markdown basics"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6116,11 +6101,6 @@ msgid "**bold** or __bold__"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr ""
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6147,10 +6127,6 @@ msgstr ""
msgid "learn more about Markdown"
msgstr ""
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "Ask Your Question"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
@@ -6160,26 +6136,25 @@ msgstr ""
"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."
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"<span class='strong big'>Looks like your email address, %(email)s has not "
+
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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>."
+"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/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Login/Signup to Post"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Ask Your Question"
+"question will saved as pending meanwhile."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6195,10 +6170,15 @@ msgid "about"
msgstr ""
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr ""
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr ""
@@ -6219,18 +6199,11 @@ msgstr "people"
msgid "badges"
msgstr ""
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "Tips"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
+#, fuzzy
+msgid "ask a question interesting to this community"
msgstr "ask a question interesting to this community"
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "provide enough details"
-
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
msgid_plural "views"
@@ -6251,29 +6224,29 @@ msgid_plural "votes"
msgstr[0] "votes"
msgstr[1] "votes"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
#, fuzzy
msgid "see unanswered questions"
msgstr "Post Your Answer"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "Ask Your Question"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "Ask Your Question"
@@ -6286,23 +6259,23 @@ msgstr ""
msgid "badges:"
msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "sign out"
+#: skins/default/templates/widgets/user_navigation.html:9
+msgid "sign out"
+msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "Hi, there! Please sign in"
+#: skins/default/templates/widgets/user_navigation.html:12
+msgid "Hi, there! Please sign in"
+msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr ""
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "no"
+#: templatetags/extra_filters_jinja.py:279
+msgid "no"
+msgstr ""
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr ""
@@ -6319,7 +6292,8 @@ msgid "this field is required"
msgstr ""
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "Choose screen name"
#: utils/forms.py:69
@@ -6351,8 +6325,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "Your email <i>(never shared)</i>"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6366,17 +6340,13 @@ msgstr ""
msgid "this email is already used by someone else, please choose another"
msgstr ""
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "Password"
-
#: utils/forms.py:170
msgid "password is required"
msgstr ""
#: utils/forms.py:173
-msgid "retype password"
-msgstr "Password <i>(please retype)</i>"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6386,28 +6356,59 @@ msgstr ""
msgid "sorry, entered passwords did not match, please try again"
msgstr ""
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr ""
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr ""
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] ""
msgstr[1] ""
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] ""
msgstr[1] ""
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6420,197 +6421,659 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr ""
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "Sorry, anonymous users cannot vote"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr ""
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr ""
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr ""
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr ""
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr ""
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
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:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr ""
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr ""
-#: views/meta.py:84
+#: views/commands.py:620
+msgid "Please sign in to delete/restore posts"
+msgstr ""
+
+#: views/meta.py:37
+#, python-format
+msgid "About %(site)s"
+msgstr ""
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr ""
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr ""
+
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] ""
msgstr[1] ""
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] ""
-msgstr[1] ""
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr ""
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr ""
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr ""
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr ""
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr ""
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr ""
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr ""
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr ""
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "user karma"
+#: views/users.py:701
+msgid "user karma"
+msgstr ""
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "Profile - User's Karma"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr ""
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr ""
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr ""
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr ""
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr ""
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr ""
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:192
-msgid "Please log in to ask questions"
-msgstr ""
+#: views/writers.py:189
+msgid ""
"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr ""
-#: views/writers.py:600
+#: views/writers.py:572
#, 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:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
-#: views/writers.py:658
+#: views/writers.py:619
#, 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:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
+#~ msgid "question_answered"
+#~ msgstr "answered question"
+
+#~ msgid "question_commented"
+#~ msgstr "commented question"
+
+#~ msgid "Incorrect username."
+#~ msgstr "sorry, there is no such user name"
+
+#~ 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>Dear %(name)s,</p></p>The following question has been updated on the "
+#~ "Q&A forum:</p>"
+#~ msgstr[1] ""
+#~ "<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated "
+#~ "on the Q&A forum:</p>"
+
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "<p>Please remember that you can always <a "
+#~ "href='%(email_settings_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 "
+#~ "%(admin_email)s.</p><p>Sincerely,</p><p>Your friendly Q&A forum server.</"
+#~ "p>"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr "sorry, file uploading requires karma >%(min_rep)s"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#~ msgid "suspended users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr ""
+#~ "You have flagged this question before and cannot do it more than once"
+
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, since your account is blocked you cannot flag posts as offensive"
+
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr ""
+#~ "Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+#~ "required"
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr ""
+#~ "Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+#~ "offensive flags per day."
+
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot remove flags. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] ""
+#~ "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+#~ msgstr[1] ""
+#~ "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "sorry, but older votes cannot be revoked"
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Enter your new email into the box below</span> "
+#~ "if you'd like to use another email for <strong>update subscriptions</"
+#~ "strong>.<br>Currently you are using <strong>%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Please enter your email address in the box below."
+#~ "</span> Valid email address is required on this Q&amp;A forum. If you "
+#~ "like, you can <strong>receive updates</strong> on interesting questions "
+#~ "or entire forum via email. Also, your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. Email addresses are never shown or otherwise shared with anybody "
+#~ "else."
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
+#~ "anyone, must be valid)"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">An email with a validation link has been sent "
+#~ "to %(email)s.</span> Please <strong>follow the emailed link</strong> with "
+#~ "your web browser. Email validation is necessary to help insure the proper "
+#~ "use of email on <span class=\"orange\">Q&amp;A</span>. If you would like "
+#~ "to use <strong>another email</strong>, please <a "
+#~ "href='%(change_email_url)s'><strong>change it again</strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Your email address %(email)s has not been "
+#~ "changed.</span> If you decide to change it later - you can always do it "
+#~ "by editing it in your user profile or by using the <a "
+#~ "href='%(change_email_url)s'><strong>previous form</strong></a> again."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Your email address is now set to %(email)s.</"
+#~ "span> Updates on the questions that you like most will be sent to this "
+#~ "address. Email notifications are sent once a day or less frequently - "
+#~ "only when there are any news."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Thank you for verifying your email!</span> Now "
+#~ "you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+#~ "if you find a very interesting question you can <strong>subscribe for the "
+#~ "updates</strong> - then will be notified about changes <strong>once a "
+#~ "day</strong> or less frequently."
+
+#~ msgid "email key not sent"
+#~ msgstr "Validation email not sent"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Your current email address %(email)s has been "
+#~ "validated before</span> so the new key was not sent. You can <a "
+#~ "href='%(change_link)s'>change</a> email used for update subscriptions if "
+#~ "necessary."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "%(provider)s login.</span> Please create your <strong>screen name</"
+#~ "strong> and save your <strong>email</strong> address. Saved email address "
+#~ "will let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<p><span class='strong big'>Oops... looks like screen name %(username)s "
+#~ "is already used in another account.</span></p><p>Please choose another "
+#~ "screen name to use with your %(provider)s login. Also, a valid email "
+#~ "address is required on the <span class='orange'>Q&amp;A</span> forum. "
+#~ "Your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. If you like, you can <strong>receive updates</strong> on the "
+#~ "interesting questions or entire forum by email. Email addresses are never "
+#~ "shown or otherwise shared with anybody else.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "%(provider)s login.</span></p><p>You can either keep your <strong>screen "
+#~ "name</strong> the same as your %(provider)s login name or choose some "
+#~ "other nickname.</p><p>Also, please save a valid <strong>email</strong> "
+#~ "address. With the email you can <strong>subscribe for the updates</"
+#~ "strong> on the most interesting questions. Email address is also used to "
+#~ "create and retrieve your unique avatar image - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "Facebook login.</span> Please create your <strong>screen name</strong> "
+#~ "and save your <strong>email</strong> address. Saved email address will "
+#~ "let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid "Screen name label"
+#~ msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
+
+#~ msgid "Email address label"
+#~ msgstr ""
+#~ "<strong>Email Address</strong> (<i>will <strong>not</strong> be shared "
+#~ "with anyone, must be valid</i>)"
+
+#~ 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."
+
+#~ msgid "create account"
+#~ msgstr "Signup"
+
+#~ msgid "Login"
+#~ msgstr "Sign in"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "With the OpenID you don't need to create new username and password."
+
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "You can safely re-use the same login for all OpenID-enabled websites."
+
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "There are > 160,000,000 OpenID account in use. Over 10,000 sites are "
+#~ "OpenID-enabled."
+
+#~ msgid "openid is supported open standard"
+#~ msgstr ""
+#~ "OpenID is based on an open standard, supported by many organizations."
+
+#~ msgid "Traditional signup info"
+#~ msgstr ""
+#~ "<span class='strong big'>If you prefer, create your forum login name and "
+#~ "password here. However</span>, please keep in mind that we also support "
+#~ "<strong>OpenID</strong> login method. With <strong>OpenID</strong> you "
+#~ "can simply reuse your external login (e.g. Gmail or AOL) without ever "
+#~ "sharing your login details with anyone and having to remember yet another "
+#~ "password."
+
+#~ msgid "Create Account"
+#~ msgstr "Signup"
+
+#~ msgid "answer permanent link"
+#~ msgstr "permanent link"
+
+#~ msgid "Related tags"
+#~ msgstr "Tags"
+
+#~ msgid "Ask a question"
+#~ msgstr "Ask Your Question"
+
+#~ msgid "Badges summary"
+#~ msgstr "Badges"
+
+#~ msgid "gold badge description"
+#~ msgstr ""
+#~ "Gold badge is the highest award in this community. To obtain it have to "
+#~ "show profound knowledge and ability in addition to your active "
+#~ "participation."
+
+#~ msgid "silver badge description"
+#~ msgstr ""
+#~ "silver badge: occasionally awarded for the very high quality contributions"
+
+#~ msgid "bronze badge description"
+#~ msgstr "bronze badge: often given as a special honor"
+
+#~ msgid ""
+#~ "is a Q&A site, not a discussion group. Therefore - please avoid having "
+#~ "discussions in your answers, comment facility allows some space for brief "
+#~ "discussions."
+#~ msgstr ""
+#~ "is a <strong>question and answer</strong> site - <strong>it is not a "
+#~ "discussion group</strong>. Please avoid holding debates in your answers "
+#~ "as they tend to dilute the essense of questions and answers. For the "
+#~ "brief discussions please use commenting facility."
+
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "When a question or answer is upvoted, the user who posted them will gain "
+#~ "some points, which are called \"karma points\". These points serve as a "
+#~ "rough measure of the community trust to him/her. Various moderation tasks "
+#~ "are gradually assigned to the users based on those points."
+
+#, fuzzy
+#~ msgid "use tags"
+#~ msgstr "Tags"
+
+#~ msgid "what is gravatar"
+#~ msgstr "How to change my picture (gravatar) and what is gravatar?"
+
+#~ msgid "gravatar faq info"
+#~ msgstr ""
+#~ "<p>The picture that appears on the users profiles is called "
+#~ "<strong>gravatar</strong> (which means <strong>g</strong>lobally "
+#~ "<strong>r</strong>ecognized <strong>avatar</strong>).</p><p>Here is how "
+#~ "it works: a <strong>cryptographic key</strong> (unbreakable code) is "
+#~ "calculated from your email address. You upload your picture (or your "
+#~ "favorite alter ego image) the website <a href='http://gravatar."
+#~ "com'><strong>gravatar.com</strong></a> from where we later retreive your "
+#~ "image using the key.</p><p>This way all the websites you trust can show "
+#~ "your image next to your posts and your email address remains private.</"
+#~ "p><p>Please <strong>personalize your account</strong> with an image - "
+#~ "just register at <a href='http://gravatar.com'><strong>gravatar.com</"
+#~ "strong></a> (just please be sure to use the same email address that you "
+#~ "used to register with us). Default image that looks like a kitchen tile "
+#~ "is generated automatically.</p>"
+
+#~ msgid "Change tags"
+#~ msgstr "Retag question"
+
+#~ msgid "reputation"
+#~ msgstr "karma"
+
+#~ msgid "newest answers"
+#~ msgstr "newest"
+
+#~ msgid "popular answers"
+#~ msgstr "most voted"
+
+#~ 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)!"
+
+#~ 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)! "
+
+#~ 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!"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Login/Signup to Post"
+
+#~ msgid "question asked"
+#~ msgstr "Asked"
+
+#~ msgid "question was seen"
+#~ msgstr "Seen"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Notify me</strong> once a day by email when there are any new "
+#~ "answers or updates"
+
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Notify me</strong> immediately when there are any new answers or "
+#~ "updates"
+
+#~ 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)"
+
+#~ 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."
+
+#~ msgid "Stop sending email"
+#~ msgstr "Stop Email"
+
+#~ msgid "reputation history"
+#~ msgstr "karma"
+
+#~ msgid "recent activity"
+#~ msgstr "activity"
+
+#~ msgid "casted votes"
+#~ msgstr "votes"
+
+#~ msgid "answer tips"
+#~ msgstr "Tips"
+
+#~ msgid "please try to provide details"
+#~ msgstr "provide enough details"
+
+#~ msgid "ask a question"
+#~ msgstr "Ask Your Question"
+
+#~ 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. "
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Login/Signup to Post"
+
+#~ msgid "question tips"
+#~ msgstr "Tips"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "ask a question interesting to this community"
+
+#~ msgid "logout"
+#~ msgstr "sign out"
+
+#~ msgid "login"
+#~ msgstr "Hi, there! Please sign in"
+
+#~ msgid "no items in counter"
+#~ msgstr "no"
+
+#~ msgid "choose password"
+#~ msgstr "Password"
+
+#~ msgid "retype password"
+#~ msgstr "Password <i>(please retype)</i>"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "user karma"
+
+#~ msgid "Please log in to ask questions"
+#~ 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 ""
#~ "As a registered user you can login with your OpenID, log out of the site "
#~ "or permanently remove your account."
diff --git a/askbot/locale/hu/LC_MESSAGES/djangojs.po b/askbot/locale/hu/LC_MESSAGES/djangojs.po
index 2a385c1e..a7a3ff37 100644
--- a/askbot/locale/hu/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/hu/LC_MESSAGES/djangojs.po
@@ -4,9 +4,9 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:55-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,146 +75,76 @@ msgstr ""
msgid "loading..."
msgstr ""
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr ""
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr ""
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr ""
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr ""
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr ""
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+msgid "please confirm removal of offensive flag"
+msgstr ""
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr ""
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr ""
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr ""
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr ""
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr ""
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr ""
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr ""
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr ""
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr ""
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -228,114 +158,107 @@ msgid_plural "Delete these notifications?"
msgstr[0] ""
msgstr[1] ""
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
diff --git a/askbot/locale/it/LC_MESSAGES/django.po b/askbot/locale/it/LC_MESSAGES/django.po
index c70936fb..6cf0a2c6 100644
--- a/askbot/locale/it/LC_MESSAGES/django.po
+++ b/askbot/locale/it/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:51-0500\n"
"PO-Revision-Date: 2011-11-19 11:27\n"
"Last-Translator: <tapion@pdp.linux.it>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,15 +22,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "Mi spiace, ma devi essere registrato per usare questa funzionalità"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr " - "
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr "Feed di un'unica domanda"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "domande recenti"
@@ -57,24 +57,33 @@ msgstr "titolo"
msgid "please enter a descriptive title for your question"
msgstr "per favore inserisci un titolo descrittivo per la tua domanda"
-#: forms.py:111
+#: forms.py:113
#, fuzzy, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "il titolo deve essere più lungo di 10 caratteri"
msgstr[1] "il titolo deve essere più lungo di 10 caratteri"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "contenuto"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "tag"
-#: forms.py:168
+#: forms.py:188
#, fuzzy, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -89,40 +98,40 @@ msgstr[1] ""
"I tag sono brevi parole chiave, senza spaziature tra una e l'altra. Possono "
"essere inseriti fino a 5 tags."
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "i tag sono obbligatori"
-#: forms.py:210
+#: forms.py:232
#, 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:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "Devi inserire almeno uno di questi tag: %(tags)s"
-#: forms.py:227
+#: forms.py:249
#, 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:235
-msgid "use-these-chars-in-tags"
-msgstr "usa-questi-caratteri-nei-tag"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
"wiki della comunità (il karma non è ricompensato & molti altri possono "
"modificare le pagine del wiki)"
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -130,11 +139,11 @@ msgstr ""
"se scegli l'opzione 'domanda comunitaria', le domanda e le risposte non "
"genereranno punti ed il nome dell'autore non verrà mostrato"
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "aggiorna il sommario:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -142,59 +151,59 @@ msgstr ""
"inserisci una breve descrizione della tua modifica (ad esempio, corretta "
"l'ortografia, migliorato lo stile. Questo campo è opzionale)"
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Inserisci un numero di punti da aggiungere o rimuovere"
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "approvato"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "osservato"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "sospeso"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "bloccato"
-#: forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr "Amministratore"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "moderatore"
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr "Cambia lo stato a"
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "quale?"
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr "Non è possibile cambiare il proprio stato"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "Non è possibile rendere moderatore un altro utente"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "Non è possibile cambiare lo stato di un altro moderatore"
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "Non è possibile cambiare il proprio stato ad amministratore"
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -203,45 +212,50 @@ msgstr ""
"Se desideri cambiare lo stato di %(username)s, per piacere fai una selezione "
"sensata."
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Oggetto"
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "Messaggio"
-#: forms.py:579
+#: forms.py:530
#, fuzzy
msgid "Your name (optional):"
msgstr "Il tuo nome:"
-#: forms.py:580
+#: forms.py:531
#, fuzzy
msgid "Email:"
msgstr "e-mail:"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "Il tuo messaggio:"
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr "chiedi come utente anonimo"
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr "Controlla se non vuoi rivelare il tuo nome quando fai questa domanda"
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
@@ -249,11 +263,11 @@ msgstr ""
"Hai posto questa domanda in modo anonimo. se decidi di rivelare la tua "
"identità, per favore seleziona questo campo."
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr "rivela l'identità"
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
@@ -261,7 +275,7 @@ msgstr ""
"Spiacenti, solo il proprietario della domanda anonima può rivelare la sua "
"identità, per favore togli la spunta dal campo"
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -271,192 +285,207 @@ msgstr ""
"porre domande anonime. Controlla il box \"rivela identità\" oppure ricarica "
"questa pagina e prova a modificare la domanda ancora"
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr "questa email verrà linkata a gravatar"
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Nome reale"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "Sito web"
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr "Città"
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr "Mostra paese"
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Data di nascita"
-#: forms.py:959
+#: forms.py:917
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:965
+#: forms.py:923
msgid "Profile"
msgstr "Profilo"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Nome utente"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "questa email è già stata registrata, per favore utilizzane un'altra"
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Scegli il tag filtro per l'email"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "Chiesto da me"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "Risposta fornita da me"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Selezionato individualmente"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Tutto il forum (tag filtrati)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Commenti e post che mi citano"
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "per favore scegli una delle opzioni soprariportate"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "okay, proviamo!"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "no askbot email please, thanks"
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "per favore scegli una delle opzioni soprariportate"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
-#: urls.py:52
+#: urls.py:41
msgid "about/"
msgstr "about/"
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr "faq/"
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "privacy/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "risposte/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "modifica/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "revisioni/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+msgid "questions"
+msgstr "domande"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "domande/"
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "chiedi/"
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr "retag/"
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "chiudi/"
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "riapri/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "rispondi/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "vota/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "tag/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "iscrivi-per-tag/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "utenti/"
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr "iscrizioni/"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr "utenti/aggiornamenti_ha_avatar_personalizzzato"
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "badges/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "messaggi/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "segnacomeletto/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "upload/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "contatti/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "domanda/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "account/"
@@ -588,22 +617,27 @@ msgstr ""
"EMAIL_SUBJECT_PREFIX. Ail valore inserito quà sovrascriverà il predefinito."
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Configurazione email ed avvisi tramite mail"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Massimo numero di news in un avviso tramite mail"
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr "Frequenza di notifica news predefinita"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr "Opzione per determinare la frequenza di email autovalutate"
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr "Frequenza predefinita della notifica delle domande fatte dagli utenti"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
@@ -611,12 +645,12 @@ msgstr ""
"Opzione per definire la frequenza degli aggiornamenti per email per: Domande "
"chieste dall'utente"
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr ""
"Frequenza predefinita di invio delle notifiche per risposte date dall'utente"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
@@ -624,7 +658,7 @@ msgstr ""
"Opzione per definire la frequenza degli aggiornamenti email per: Domande "
"risposte da utente."
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
@@ -632,7 +666,7 @@ msgstr ""
"Frequenza predefinita di aggiornamento per le domande selezionate "
"individualmente dall'utente"
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
@@ -640,104 +674,104 @@ msgstr ""
"Opzione per definire la frequenza di aggiornamenti email per: Domande "
"individuali, selezionati dall'utente."
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
"Frequenza predefinita per le notifiche per menzionare ecommenti"
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
"Opzione per definire la frequenza degli aggiornamenti email per: Menzionati "
"e commenti."
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr "Non ci sono domande senza risposte"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
"Giorni trascorsi prima di inviare promemoria riguardo domande non risposte"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
"Quanto spesso inviare i promemoria riguardo alle domande senza risposta"
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
"Numero massimo di promemoria da inviare riguardo alle domande non risposte"
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr "Manda promemoria periodici per accettare la risposta migliore"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
"Giorni trascorsi prima di inviare un promemoria per accettare una risposta"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr "Quanto spesso "
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
"Numero massimo di promemoria da inviare per accettare la miglior risposta"
-#: conf/email.py:218
+#: conf/email.py:227
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:219
+#: conf/email.py:228
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:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr "Consenti solo un account per indirizzo email"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr "Email fasulla per gli utenti non registrati"
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
"Utilizza questi settaggi per controllare il gravatar per utenti senza email"
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr "Consenti di inviare domande per email"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
@@ -745,11 +779,11 @@ msgstr ""
"Prima di abilitare questa opzione, prima compila le impostazioni IMAP nelle "
"impostazioni.file py"
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr "Sostituisci lo spazio nei tag delle email con un trattino"
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
@@ -757,6 +791,25 @@ msgstr ""
"Queste impostazioni si applicano ai tag scritti nel campo oggetto della "
"domanda risoltaper email"
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "Consenti di inviare domande per email"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr "Chiave per servizi esterni"
@@ -792,15 +845,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr "Abilita il recaptcha (le chiavi quà sotto sono necessarie)"
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr "Chiave pubblica Recaptcha"
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr "Chiave privata Recaptcha"
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -811,11 +864,11 @@ msgstr ""
"spam robots. Per favore ottieni questa ed una chiave pubblica all'indirizzo "
"<a href=\"%(url)s\">recaptcha.net</a>"
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr "Facebook API key"
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -826,15 +879,15 @@ msgstr ""
"Connect per i login al tuo sito. Per favore ottieni queste chiavi presso la "
"pagina <a href=\"%(url)s\">facebook create app</a>"
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Facebook secret key"
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr "Il codice utente di Twitter"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
@@ -843,15 +896,15 @@ msgstr ""
"Per favore registra il tuo form a <a href=\"%(url)s\">sito dell'applicazione "
"twitter</a>"
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr "Il codice segreto dell'utente di Twitter"
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr "Il codice utente di LinkedIn"
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
@@ -859,41 +912,25 @@ msgstr ""
"Per favore, registra il tuo form a <a href=\"%(url)s\">sito di sviluppo di "
"LinkedIn"
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr "Codice segreto di LinkedIn"
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr "codice utente di ident.ca"
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr "Per favore registra il tuo forum a <a href\"%(url)s\">Identi.ca"
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr "codice utente di identi.ca"
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr "Usa l'autenticazione LDAP per le passwird "
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr "Nome utente del provider LDAP"
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr "URL del servizio LDAP"
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr "Spiega come modificare la password LDAP"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "Pagine statiche - about, privacy policy, etc."
@@ -938,11 +975,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr "Impostazioni per la visualizzazione dei dati di Askbot"
-#: conf/forum_data_rules.py:22
-#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
+#, fuzzy, python-format
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
"Abilita l'inserimento di video. <em>Nota: per favore leggi <a href="
"\"%(url)s>leggi questo</a> prima </em>"
@@ -1011,10 +1050,15 @@ msgid "Minimum length of answer body (number of characters)"
msgstr "Massima lunghezza di un tag (numero di caratteri)"
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "i tag sono obbligatori"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr "Tag obbligatori"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
@@ -1023,11 +1067,11 @@ msgstr ""
"Il tag obbligatorio può essere anche un wildcard, se i tag wilcard sono "
"attivi."
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr "Forza tag con lettere minuscole"
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
@@ -1037,22 +1081,22 @@ msgstr ""
"database ed esegui il comando <code>python manage.py fix_question_tags</"
"code> per aggiornare i tag globalmente"
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr "Formato della lista dei tag"
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
"Seleziona il formato con cui mostrare i tag: lista semplice o come una "
"nuvola di tag"
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "Usa tag multipli"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
@@ -1060,49 +1104,49 @@ msgstr ""
"I tag wildcards possono essere usati per selezionare o ignorare più tag "
"insieme, un tag wildcard valido ha una wildcard singola alla fine"
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr "Numero massimo di commenti da mostrare sotto il post"
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr "La lunghezza massima del commento deve essere < %(max_len)s"
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr "Limita il tempo per modificare i commenti"
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
"Se non selezionato, non ci sarà un limite di tempo per modificare i commenti"
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr "Minuti concessi per modificare un commento"
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr "Per abilitare questa impostazione devi selezionare la precedente"
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr "Salva i commenti premendo <Enter>"
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr "Lunghezza minima dei termini di ricerca per la ricerca Ajax"
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr "Deve corrispondere all'analoga impostazione backend del database"
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr "Non rendere il campo di ricerca adesivo"
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
@@ -1113,20 +1157,76 @@ msgstr ""
"sua posizione predefinita o non ti piace il comportamento adesivo "
"predefinito della barra di ricerca."
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "Massimo numero di tag per domanda"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr "Numero di domande da mostrare di default"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "Cosa dovrebbe significare \"domande senza risposta\"?"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr "Usa l'autenticazione LDAP per le passwird "
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+#, fuzzy
+msgid "LDAP Server USERID field name"
+msgstr "Nome utente del provider LDAP"
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+#, fuzzy
+msgid "LDAP Server EMAIL field name"
+msgstr "Nome utente del provider LDAP"
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Pagina delle domande nella barra laterale"
+
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "Profilo utente"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+#, fuzzy
+msgid "Content License"
msgstr "Contenuto LicensaContenuto Licensa"
#: conf/license.py:21
@@ -1206,16 +1306,16 @@ msgstr ""
"Per abilitarlo, vai in Impostazioni->Scrittura->Pubblicazione Remota e "
"seleziona la casella per XML-RPC"
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr "Carica la tua icona"
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr "Attiva il login per %(provider)s"
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1381,6 +1481,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr "Regole relative all'ottenimento e cessione di punti reputazione"
@@ -1590,27 +1694,27 @@ msgstr "Descrizione del sito per i motori di ricerca"
msgid "Short name for your Q&A forum"
msgstr "Nome breve per il tuo forum Q&A"
-#: conf/site_settings.py:68
+#: 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:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr "Seleziona per abilitare i saluti agli utenti anonimi"
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr "Testo mostrato nel benvenuto agli utenti anonimi"
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr "Usa l'HTML per formattare il messaggio"
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "URL di un sito esterno per i contatti"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr "Se lasciato vuoto, verrà usata una pagina interna per i contatti"
@@ -1736,21 +1840,21 @@ 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:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1758,21 +1862,21 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr "Mostra tutte le funzionalità a tutti gli utenti"
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
msgid ""
"If checked, all forum functions will be shown to users, regardless of their "
"reputation. However to use those functions, moderation rules, reputation and "
@@ -1782,19 +1886,19 @@ msgstr ""
"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:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr "Scegli skin"
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1806,11 +1910,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1819,21 +1923,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1842,21 +1946,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1865,19 +1969,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1888,19 +1992,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr "Numero di revisione dei media della skin"
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1965,38 +2069,68 @@ msgstr ""
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
msgid "User settings"
msgstr "Impostazioni degli utenti"
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr "Permetti di modificare il nome utente visualizzato"
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "Consenti solo un account per indirizzo email"
+
+#: conf/user_settings.py:41
msgid "Allow account recovery by email"
msgstr "Consenti il recupero dell'account per email"
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr "Lunghezza minima per il nome utente visualizzato"
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+#, fuzzy
+msgid "Default avatar for users"
+msgstr "Valore predefinito: %s"
+
+#: conf/user_settings.py:70
+#, fuzzy
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+"Per cambiare il logo, seleziona il nuovo file, poi salva le impostazioni"
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr "Nome per gli utenti anonimi"
@@ -2114,326 +2248,339 @@ msgstr "spam o pubblicità"
msgid "too localized"
msgstr "troppo specifica"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "più recenti"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "meno recenti"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "attive"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "inattive"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "più attive"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "meno attive"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "più votate"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "meno votate"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "rilevanza"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "tutte"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "senza risposta"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "preferite"
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr "lista"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "La domanda non ha risposte"
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "La domanda non ha risposte accettate"
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr "ha posto una domanda"
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr "ha risposto a una domanda"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "ha commentato una domanda"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "ha commentato una risposta"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "ha modificato una domanda"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "ha modificato una risposta"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "ha ricevuto una medaglia"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "ha accettato una risposta"
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "ha dato un voto positivo"
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "ha dato un voto positivo"
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "ha annullato un voto"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "ha cancellato una domanda"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "ha cancellato una risposta"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "ha segnalato come inappropriata"
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "ha aggiornato i tag"
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "ha scelto un tag preferito"
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "ha completato il suo profilo utente"
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "aggiornamento via mail inviato all'utente"
-#: const/__init__.py:142
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr "notifica le domande inviate che non hanno avuto risposta"
-#: const/__init__.py:146
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr "notifica quando la risposta viene considerata la migliore"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "menzionato nel post"
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "risposta_a_una_domanda"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "commento_a_una_domanda"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr "risposta_commentata"
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr "risposta_accettata"
+#, fuzzy
+msgid "answered question"
+msgstr "ha risposto a una domanda"
+
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "ha modificato una risposta"
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[chiusa]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[cancellata]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "versione iniziale"
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "ritaggata"
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr ""
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "escludi gli ignorati"
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr "unico selezionato"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "immediatamente"
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "ogni giorno"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "ogni settimana"
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "mai"
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr "mystery-man"
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
msgid "wavatar"
msgstr "wavatar"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "oro"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "argento"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "bronzo"
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr ""
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr ""
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr "la domanda più rilevante"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr "clicca qui se vuoi vedere le domande più rilevanti"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "per rilevanza"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "clicca qui per vedere le domande più vecchie"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "per data"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "clicca qui per vedere le domande più nuove"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "clicca qui per vedere le domande modificate meno recentemente"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "per attività"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "clicca qui per vedere le domande modificate più di recente"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr "clicca qui per vedere l'ultima domanda risposta"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "per risposte"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr "clicca qui per vedere le domande più risposte"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "clicca per vedere le domande meno votate"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "per voti"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "clicca qui per vedere le domande più votate"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr "i-names non sono supportati"
@@ -2484,11 +2631,12 @@ msgid "Your user name (<i>required</i>)"
msgstr "Il tuo username (<i>required</i>)"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Mi spiace, questo username non esiste"
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "mi spiace, questo nome utente è già in uso"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "signin/"
@@ -2526,7 +2674,7 @@ msgid "%(site)s user name and password"
msgstr "Per favore inserisci username e password di %(site)s"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2608,77 +2756,77 @@ msgstr "Per favore inserisci username e password"
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "L'OpenID %(openid_url)s non è valido"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr "Nuova password salvata"
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr "Oops! C'è stato un errore, per favore riprova"
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, 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:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr "Recupera la password su %(site)s"
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2686,28 +2834,28 @@ msgstr ""
msgid "Site"
msgstr "Sito"
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "Impostazioni base"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Valore predefinito: \"\""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Valore predefinito:"
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Valore predefinito: %s"
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr "I tipi di file immagine consentiti sono %(types)s"
@@ -2723,7 +2871,7 @@ msgstr "Documentazione"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Cambia password"
@@ -2785,132 +2933,52 @@ msgstr "Espandi tutti"
msgid "Congratulations, you are now an Administrator"
msgstr "Congratulazioni, ora sei un Amministratore"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr "Per favore accetta la migliore risposta per questa domanda:"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr "Per favore accetta la migliore risposta per queste domande:"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
msgstr[1] ""
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
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
+#: management/commands/send_email_alerts.py:449
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:465
-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:471
-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:477
-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:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
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>"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2922,20 +2990,20 @@ msgstr[1] ""
msgid "Please log in to use %s"
msgstr "Accedi o registrati per inserire domande"
-#: models/__init__.py:317
+#: models/__init__.py:320
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 è stato bloccato"
-#: models/__init__.py:321
+#: models/__init__.py:324
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:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
@@ -2944,13 +3012,13 @@ msgstr ""
"Ti servono più di %(points)s punti per accettare o negare la risposta alla "
"tua stessa domanda"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
@@ -2959,61 +3027,45 @@ msgstr ""
"Mi spiace, solo il moderatore o l'autore della domanda, %(username)s, può "
"accettare la risposta migliore"
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "Mi spiace, non puoi votare per i tuoi post"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "Mi spiace, il tuo account è stato bloccato"
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "Mi spiace, il tuo account è stato sospeso"
-#: models/__init__.py:410
+#: models/__init__.py:409
#, 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:416
+#: models/__init__.py:415
#, 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:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "Mi spiace, gli utenti bloccati non possono caricare files"
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr "Mi spiace, gli utenti sospesi non possono caricare files"
-#: models/__init__.py:434
+#: models/__init__.py:433
#, 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:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
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:454 models/__init__.py:989
-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:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3024,20 +3076,20 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
"Mi spiace, solo gli autori, i moderatori e gli amministratori possono "
"modificare i commenti"
-#: models/__init__.py:506
+#: models/__init__.py:519
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:510
+#: models/__init__.py:523
#, python-format
msgid ""
"Sorry, to comment any post a minimum reputation of %(min_rep)s points is "
@@ -3047,7 +3099,7 @@ msgstr ""
"Per commentare gli altri post serve avere almeno %(min_rep)s punti "
"reputazione. "
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
@@ -3055,7 +3107,7 @@ msgstr ""
"Questo post è stato cancellato e può essere consultato solo dall'autore, dai "
"moderatori e dagli amministratori"
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
@@ -3063,18 +3115,18 @@ msgstr ""
"Mi spiace, solo l'autore, i moderatori e gli amministratori possono "
"modificare un post cancellato."
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
"Mi spiace, non puoi modificare alcun post perché il tuo account è stato "
"bloccato"
-#: models/__init__.py:574
+#: models/__init__.py:589
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:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
@@ -3082,7 +3134,7 @@ msgstr ""
"Mi spiace, per modificare i post appartenenti allo wiki servono almeno "
"%(min_rep)s punti reputazione"
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
@@ -3091,7 +3143,7 @@ msgstr ""
"Mi spiace, per modificare i post altrui servono almeno %(min_rep)s punti "
"reputazione"
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3105,17 +3157,17 @@ msgstr[1] ""
"Mi spiace, non puoi cancellare la tua domanda perché qualcun altro ha "
"fornito delle risposte con voti a favore"
-#: models/__init__.py:664
+#: models/__init__.py:679
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:668
+#: models/__init__.py:683
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:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
@@ -3124,16 +3176,16 @@ msgstr ""
"Mi spiace, per cancellare i post altrui servono almeno %(min_rep)s punti "
"reputazione"
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
"Mi spiace, non puoi chiudere domande perché il tuo account è stato bloccato"
-#: models/__init__.py:696
+#: models/__init__.py:711
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:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
@@ -3142,7 +3194,7 @@ msgstr ""
"Mi spiace, per chiudere post altrui servono almeno %(min_rep)s punti "
"reputazione."
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
@@ -3150,7 +3202,7 @@ msgstr ""
"Mi spiace, per chiudere una tua domanda servono almeno %(min_rep)s punti "
"reputazione."
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
@@ -3159,7 +3211,7 @@ msgstr ""
"Mi spiace, solo amministratori, moderatori e autori con più di %(min_rep)s "
"punti reputazione possono riaprire domande."
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
@@ -3167,77 +3219,68 @@ msgstr ""
"Mi spiace, per riaprire una tua domanda devi avere almeno %(min_rep)s punti "
"reputazione."
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr ""
-"Hai già segnalato questo messaggio come inappropriato, non puoi farlo una "
-"seconda volta."
-
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-"Non puoi segnalare questo messaggio come inappropriato perché il tuo account "
-"è stato bloccato."
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
-msgstr ""
-"Non puoi segnalare questo messaggio come inappropriato perché il tuo account "
-"è sospeso."
+#: models/__init__.py:783
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr "Mi spiace, non puoi cancellare post perché il tuo account è blocato"
-#: models/__init__.py:768
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
msgstr ""
-"Mi spiace, servono più di %(min_rep)s punti reputazione per segnalare un "
-"post come inappropriato."
+"Mi spiace, servono almeno %(min_rep)s punti reputazione per cambiare i tag "
+"di una domanda"
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
msgstr ""
-"Mi spiace, hai già segnalato %(max_flags_per_day)s post come offensivi oggi, "
-"hai superato il massimo giornaliero."
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
-msgstr ""
-"Non puoi segnalare questo messaggio come inappropriato perché il tuo account "
-"è stato bloccato."
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr "Mi spiace, non puoi cancellare post perché il tuo account è blocato"
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
msgstr ""
-"Non puoi segnalare questo messaggio come inappropriato perché il tuo account "
-"è sospeso."
-#: models/__init__.py:809
+#: models/__init__.py:843
#, fuzzy, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
-"Mi spiace, servono più di %(min_rep)s punti reputazione per segnalare un "
-"post come inappropriato."
+"Mi spiace, servono almeno %(min_rep)s punti reputazione per cambiare i tag "
+"di una domanda"
msgstr[1] ""
-"Mi spiace, servono più di %(min_rep)s punti reputazione per segnalare un "
-"post come inappropriato."
+"Mi spiace, servono almeno %(min_rep)s punti reputazione per cambiare i tag "
+"di una domanda"
-#: models/__init__.py:828
+#: models/__init__.py:862
#, fuzzy
msgid "you don't have the permission to remove all flags"
msgstr "Non hai i permessi per modificare i valori."
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
@@ -3245,19 +3288,19 @@ msgstr ""
"Mi spiace, solo gli autori, i moderatori e gli amministratori possono "
"cambiare i tag di una domanda cancellata"
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
"Mi spiace, non puoi cambiare i tag perché il tuo account è stato bloccato."
-#: models/__init__.py:864
+#: models/__init__.py:898
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:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
@@ -3265,145 +3308,145 @@ msgstr ""
"Mi spiace, servono almeno %(min_rep)s punti reputazione per cambiare i tag "
"di una domanda"
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
"Mi spiace, non puoi cancellare commenti perché il tuo account è stato "
"bloccato."
-#: models/__init__.py:891
+#: models/__init__.py:925
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:895
+#: models/__init__.py:929
#, 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:918
-msgid "cannot revoke old vote"
-msgstr "Mi spiace, non è possibile annullare voti."
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "il %(date)s"
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "%(hr)d ora fa"
msgstr[1] "%(hr)d ore fa"
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "%(min)d minuto fa"
msgstr[1] "%(min)d minuti fa"
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "utente non registrato"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Amministratore del sito"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Moderatore del forum"
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Utente sospeso"
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Utente bloccato"
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Utente registrato"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Utente in prova"
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Utente approvato"
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "%(username)s ha %(reputation)s punti reputazione"
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] "una medaglia d'argento"
msgstr[1] "%(count)d medaglie d'argento"
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "una medaglia di bronzo"
msgstr[1] "%(count)d medaglie di bronzo"
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "Re:\"%(title)s\""
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -3412,7 +3455,7 @@ msgstr ""
"Congratulazioni, hai ricevuto la medaglia %(badge_name)s. Controlla il <a "
"href=\"%(user_profile)s\">tuo profilo</a>."
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3672,80 +3715,60 @@ msgstr "Tassonomista"
msgid "Created a tag used by %(num)s questions"
msgstr "Ha creato un tag usato da almeno 50 domande"
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "Esperto"
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "Molto attivo in domande con lo stesso tag"
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "Mi spiace, questa domanda è stata cancellata e non è più accessibile"
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "Mi spiace, questa domanda è stata cancellata e non è più accessibile"
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr ""
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr "\" ed altro ancora"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s ha modificato la sua domanda"
-
-#: models/question.py:810
-#, 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:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s ha/hanno commentato la domanda"
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s ha/hanno commentato alcune risposte"
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s ha/hanno commentato una risposta"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Verifica e-mail"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Modificato da un moderatore. Motivo:</em> %(reason)s"
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
@@ -3754,7 +3777,7 @@ msgstr ""
" %(username)s ha guadagnato %(points)s punti reputazione per i suoi "
"contributi alla domanda %(question_title)s"
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
@@ -3763,70 +3786,72 @@ msgstr ""
" %(username)s ha perso %(points)s punti reputazione per i suoi contributi "
"alla domanda %(question_title)s"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "interessanti"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "ignorate"
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "Tutto il forum"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Domande poste da me"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Domande a cui ho risposto"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "Domande selezionate individualmente"
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr "Citazioni e risposte ai miei commenti"
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Immediatamente"
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Ogni giorno"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "Ogni settimana"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "Mai"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
#, fuzzy
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Per favore inserisci username e password"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
#, fuzzy
msgid "(or select another login method above)"
msgstr "scegli una delle opzioni qui sopra"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
#, fuzzy
msgid "Sign in"
msgstr "signin/"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Cambia e-mail"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3835,42 +3860,38 @@ msgstr "Salva il tuo indirizzo e-mail"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
msgstr ""
-"Se vuoi usare un nuovo indirizzo per le<strong>e-mail di notifica</"
-"strong>, \n"
-"<span class=\"strong big\">inseriscilo qui sotto il nuovo indirizzo</span>."
-"<br>L'indirizzo corrente è <strong>%(email)s</strong>"
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
-"<span class='strong big'>Inserisci il tuo indirizzo e-mail qui sotto</span> "
-"&Egrave; obbligatorio inserire un indirizzo e-mail valido. Se lo desideri, "
-"puoi ricevere <strong>messaggi di notifica</strong> sulle domande che ti "
-"interessano o sull'intero forum. Inoltre, il tuo indirizzo è usato per "
-"creare un'immagine <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
-"a> unica per il tuo account. Il tuo indirizzo e-mail non sarà mai pubblicato "
-"o comunicato a terze parti."
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
msgstr ""
-"<strong>Il tuo nuovo indirizzo e-mail:</strong> (non verrà <strong>mai</"
-"strong> rivelato agli altri utenti, deve essere valido)"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-"<strong>Il tuo indirizzo e-mail</strong> (<i>deve essere valido, non sarà "
-"mai rivelato agli altri utenti</i>)"
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "Salva e-mail"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3878,174 +3899,113 @@ msgstr "Salva e-mail"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Annulla"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "Verifica e-mail"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
msgstr ""
-"<span class=\"strong big\">Un'e-mail di verifica è stata spedita a %(email)s."
-"</span> <strong>Clicca sul link contenuto nell'e-mail</strong> per "
-"verificare il tuo indirizzo. La verifica dell'e-mail è necessaria per "
-"l'utilizzo del forum. Se preferisci usare <strong>un altro indirizzo</"
-"strong>, puoi <a href='%(change_email_url)s'><strong>cambiarlo di nuovo</"
-"strong></a>."
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "E-mail non modificata"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
msgstr ""
-"<span class=\"strong big\">Il tuo indirizzo e-mail %(email)s non è stato "
-"modificato.</span> Se decidi di cambiarlo, puoi farlo dal tuo profilo utente "
-"o utilizzare di nuovo <a href='%(change_email_url)s'><strong>questa pagina</"
-"strong></a>."
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "E-mail modificata"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
msgstr ""
-"<span class='big strong'>Il tuo indirizzo e-mail è ora %(email)s.</span> "
-"Gli aggiornamenti sulle domande di tuo interesse saranno spediti a questo "
-"indirizzo. Le e-mail di notifica vengono spedite solo in caso di "
-"aggiornamenti, al massimo una volta al giorno."
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "E-mail verificata"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
msgstr ""
-"<span class=\"big strong\">Grazie per aver verificato il tuo indirizzo e-"
-"mail!</span> Ora puoi <strong>scrivere domande</strong> e <strong>risposte</"
-"strong>. Puoi inoltre <strong>seguire gli sviluppi</strong> delle domande "
-"che più ti interessano: quando ci sono novità, ti sarà spedita un'e-mail di "
-"notifica <strong>una volta al giorno</strong> o meno."
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "E-mail di verifica non spedita"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Verifica e-mail"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
-"<span class='big strong'>Il tuo indirizzo %(email)s è già stato verificato</"
-"span>, quindi l'e-mail non è stata spedita. Se necessario puoi <a "
-"href='%(change_link)s'>cambiare</a> l'indirizzo usato per le notifiche."
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "Registrati"
-#: skins/common/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\">&Egrave; la prima volta che accedi con il tuo "
-"account OpenID %(provider)s.</span> Imposta il <strong>nome visualizzato</"
-"strong> e il tuo <strong>indirizzo e-mail</strong>. Con esso puoi "
-"<strong>ricevere aggiornamenti</strong> sulle domande che più ti "
-"interessano; verrà inoltre usato per creare un'immagine unica associata al "
-"tuo account, detta <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
-"a>.</p>"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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... l'utente %(username)s esiste già.</"
-"span></p><p>Scegli un altro nome utente da visualizzare per il tuo account "
-"OpenID %(provider)s. Inoltre, è necessario inserire <strong>indirizzo e-"
-"mail</strong>. Con esso puoi <strong>ricevere aggiornamenti</strong> sulle "
-"domande che più ti interessano; verrà inoltre usato per creare un'immagine "
-"unica associata al tuo account, detta <a "
-"href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-"<p><p><span class=\"big strong\">&Egrave; la prima volta che accedi con il "
-"tuo account OpenID %(provider)s.</span> </p><p>Puoi utilizzare il tuo nome "
-"utente %(provider)s come <strong>nome visualizzato</strong> oppure "
-"sceglierne uno nuovo.</p><p>Inoltre, è necessario inserire un "
-"<strong>indirizzo e-mail</strong> valido. Con esso puoi <strong>ricevere "
-"aggiornamenti</strong> sulle domande che più ti interessano; verrà inoltre "
-"usato per creare un'immagine unica associata al tuo account, detta <a "
-"href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr ""
-"<p><span class=\"big strong\">&Egrave; la prima volta che accedi con il tuo "
-"account Facebook.</span> Scegli il tuo <strong>nome visualizzato</strong> e "
-"imposta il tuo <strong>indirizzo e-mail</strong>. Con esso puoi "
-"<strong>ricevere aggiornamenti</strong> sulle domande che più ti "
-"interessano; verrà inoltre usato per creare un'immagine unica associata al "
-"tuo account, detta <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
-"a>.</p>"
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr "Questo nome utente è già in uso, scegline un altro."
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr ""
-"<strong>Nome visualizzato</strong> (<i>verrà mostrato agli altri utenti</i>)"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr ""
-"<strong>Indirizzo e-mail</strong> (<i><strong>non</strong> verrà mostrato "
-"agli altri utenti, dev'essere valido</i>)"
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "Registrati"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
msgstr ""
-"<strong>Ricevi aggiornamenti via e-mail</strong> &mdash; questo aiuterà la "
-"nostra comunità a crescere e diventare più utile.<br/>Normalmente questo "
-"forum <span class='orange'>Q&amp;A</span> ti spedirà <strong>un'e-mail a "
-"settimana</strong> con un riassunto delle novità (se ce ne sono)<br/> Se lo "
-"desideri, modifica queste impostazioni."
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "scegli una delle opzioni qui sopra"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr ""
-"Quando accederai al sito, sulla destra troverai il pannello con i filtri tag."
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "registrati"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "Accedi"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -4069,9 +4029,10 @@ msgstr "Puoi accedere al tuo account da qui:"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
"Cordialmente,\n"
" l'Amministratore"
@@ -4090,9 +4051,10 @@ msgstr ""
"Cliccando sul collegamento qui sopra, verificherai il tuo indirizzo e-mail."
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
"Se hai ricevuto questo messaggio per errore, basta che tu ignori questa e-"
@@ -4141,9 +4103,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -4178,139 +4140,101 @@ msgid ""
"account"
msgstr "Per favore inserisci la tua password"
-#: skins/common/templates/authopenid/signin.html:87
+#: skins/common/templates/authopenid/signin.html:89
#, fuzzy
-msgid "Please enter your <span>user name and password</span>, then sign in"
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Per favore inserisci username e password"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Puoi accedere al tuo account da qui:"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
#, fuzzy
msgid "Login or email"
msgstr "mai"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Password"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Accedi"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "New password created"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
#, fuzzy
msgid "Please, retype"
msgstr "per favore, digita di nuovo la password"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
#, fuzzy
msgid "provider"
msgstr "Utente approvato"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "ultimo accesso"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "cancella"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "Account eliminato."
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "Hai altre domande?"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
#, fuzzy
msgid "Please, enter your email address below and obtain a new key"
msgstr "Per favore inserisci la tua password"
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
#, fuzzy
msgid "Please, enter your email address below to recover your account"
msgstr "Per favore inserisci la tua password"
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
#, fuzzy
msgid "recover your account via email"
msgstr "Scegli una nuova password"
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
#, fuzzy
msgid "Recover your account via email"
msgstr "Scegli una nuova password"
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr "Perché usare OpenID?"
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr ""
-"Con OpenID non devi creare un nome utente e una password per ogni sito che "
-"utilizzi."
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr ""
-"Puoi riutilizzare in completa sicurezza le stesse credenziali per tutti i "
-"siti abilitati."
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-"Ci sono più di 160 milioni di account OpenID in uso. Più di 10.000 siti "
-"utilizzano OpenID."
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr ""
-"OpenID è basato su uno standard aperto, supportato da molte organizzazioni."
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "Scopri di più"
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr "Ottieni un OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "Accedi"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
#, fuzzy
msgid "Please register by clicking on any of the icons below"
@@ -4326,16 +4250,19 @@ msgid "Create login name and password"
msgstr "Scegli nome utente e password"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
msgstr ""
-"<span class='strong big'>Se preferisci, puoi scegliere un nome utente e una "
-"password per questo forum qui. Però</span>, considera che questo sito "
-"supporta anche la registrazione via <strong>OpenID</strong>. Con "
-"<strong>OpenID</strong> puoi riutilizzare il tuo account su uno dei maggiori "
-"siti (per esempio Gmail o AOL), senza dover rivelare a noi né a nessuno la "
-"tua password e senza doverne scegliere una nuova."
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
@@ -4343,15 +4270,11 @@ msgstr ""
"Riscrivi le due parole che leggi qui sotto. Questo serve a impedire la "
"creazione automatizzata di nuovi account."
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Crea account"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "oppure"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "torna al login OpenID"
@@ -4416,72 +4339,73 @@ msgstr ""
msgid "Delete These"
msgstr "ha cancellato una risposta"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "link permanente alla risposta"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "Rispondi alla domanda"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "link permanente"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "modifica"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "collegamento"
+
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "riattiva domanda"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "remove all flags"
+msgid "remove offensive flag"
+msgstr "Visualizzare i flag inappropriati"
+
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+#, fuzzy
+msgid "remove flag"
msgstr "vedi tutti i tag"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr "segnala questo messaggio come offensivo (spam, pubblicità, insulti...)"
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "segnala come offensivo"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-#, fuzzy
-msgid "remove flag"
-msgstr "vedi tutti i tag"
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "riattiva domanda"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "modifica"
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Rispondi alla domanda"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "questa risposta è stata accettata dall'autore"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
#, fuzzy
msgid "mark this answer as correct (click again to undo)"
msgstr ""
"segna questa risposta tra le preferite (clicca una seconda volta per "
"annullare)"
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "%(question_author)s ha scelto questa come risposta migliore"
-
#: skins/common/templates/question/closed_question_info.html:2
#, fuzzy, python-format
msgid ""
@@ -4496,60 +4420,68 @@ msgid "close date %(closed_at)s"
msgstr "data di chiusura %(closed_at)s"
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr "modifica i tag"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "riapri"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "chiudi"
-#: skins/common/templates/widgets/edit_post.html:21
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr "modifica i tag"
+
+#: skins/common/templates/widgets/edit_post.html:22
#, fuzzy
-msgid "one of these is required"
+msgid ", one of these is required"
msgstr "campo obbligatorio"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "tag"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(campo obbligatorio)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "attiva/disattiva l'anteprima del codice Markdown"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "nascondi anteprima"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Tag"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr "Tag preferiti"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
#, fuzzy
msgid "add"
msgstr "Aggiungi"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "Tag ignorati"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
#, fuzzy
msgid "Display tag filter"
msgstr "Scegli il tag filtro per l'email"
@@ -4602,7 +4534,7 @@ msgid "back to previous page"
msgstr "torna alla pagina precedente"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr "vedi tutte le domande"
@@ -4631,11 +4563,6 @@ msgstr "vedi le domande recenti"
msgid "see tags"
msgstr "vedi i tag"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4665,17 +4592,20 @@ msgstr "Salva modifica"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "mostra anteprima"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
msgstr "Chiedi"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, fuzzy, python-format
msgid "%(name)s"
msgstr "il %(date)s"
@@ -4690,8 +4620,8 @@ msgid "Badge \"%(name)s\""
msgstr "il %(date)s"
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, fuzzy, python-format
msgid "%(description)s"
msgstr "notifiche"
@@ -4702,11 +4632,7 @@ 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:3
-msgid "Badges summary"
-msgstr "Elenco medaglie"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "Medaglie"
@@ -4720,48 +4646,44 @@ msgstr ""
#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\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:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Tipi di medaglie "
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
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:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
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:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "Medaglie di bronzo: date anche come riconoscimento speciale"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr ""
-"Se partecipi regolarmente a questa comunità, verrai sicuramente premiato con "
-"delle medaglie di bronzo."
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Chiudi domanda"
@@ -4778,11 +4700,10 @@ msgstr "Motivo:"
msgid "OK to close"
msgstr "Chiudi"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4803,15 +4724,17 @@ msgstr ""
"<strong>interessanti</strong> per gli altri"
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Prima di porre una domanda, usa la funzione di ricerca per assicurarti che "
"non sia già stata posta"
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "Che domande devo evitare?"
#: skins/default/templates/faq_static.html:11
@@ -4828,13 +4751,11 @@ msgstr "Cosa devo evitare nelle risposte?"
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
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_static.html:15
msgid "Who moderates this community?"
@@ -4849,25 +4770,26 @@ msgid "This website is moderated by the users."
msgstr "Questo sito è moderato dai suoi utenti."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights 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_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "Come funzionano i punti reputazione?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
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_static.html:22
#, python-format
@@ -4897,75 +4819,68 @@ msgstr ""
msgid "upvote"
msgstr "votare a favore"
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr "usare i tag"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "aggiungere commenti"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "votare contro"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "Prima risposta accettata a una tua domanda"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "aprire e chiudere le proprie domande"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr "modificare i tag delle domande altrui"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "modificare le 'domande comunitarie'"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "modificare ogni risposta"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "\"delete any comment"
+msgid "delete any comment"
msgstr "cancellare commenti altrui"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
msgstr ""
-"Come cambio la mia immagine personale (gravatar)? Che cos'è il gravatar?"
-#: skins/default/templates/faq_static.html:75
-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_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Devo scegliere una password per registrarmi?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
#, fuzzy
msgid ""
"No, you don't have to. You can login through any service that supports "
@@ -4974,22 +4889,22 @@ 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_static.html:78
+#: skins/default/templates/faq_static.html:73
#, fuzzy
msgid "\"Login now!\""
msgstr "Accedi ora!"
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "Perché le altre persone possono modificare quello che scrivo?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr ""
"Lo scopo di questo sito è di creare una comunità dedita allo scambio di idee "
"e alla creazione di contenuti il più possibile utili alla comunità stessa."
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "
@@ -4999,19 +4914,19 @@ msgstr ""
"dagli utenti più esperti; questo contribuisce a migliorare la qualità totale "
"dei contenuti in questo sito."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr "Se questo approccio non fa per te, rispettiamo la tua scelta."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "Hai altre domande?"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"<a href='%(ask_question_url)s'>Ponile</a> tu stesso, e contribuisci a "
"migliorare questo sito!"
@@ -5076,6 +4991,68 @@ msgstr ""
"\n"
"Salve, questo è un messaggio di notifica del forum %(site_title)s.\n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "risposte per %(username)s"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5198,177 +5175,156 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr "<p>Cordialmente,<br/>l'amministratore</p>"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr "Riapri questa domanda"
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-#, fuzzy
-msgid "i like this question (click again to cancel)"
-msgstr "Mi piace questo messaggio (clicca una seconda volta per annullare)"
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "Mi piace questa risposta (clicca una seconda volta per annullare)"
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr "numero attuale di voti"
-#: skins/default/templates/macros.html:43
-#, fuzzy
-msgid "i dont like this question (click again to cancel)"
-msgstr "Non mi piace questo messaggio (clicca una seconda volta per annullare)"
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr "Non mi piace questa risposta (clicca una seconda volta per annullare)"
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr "utente non registrato"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "chiesto il"
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "risposto il"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "scritto il"
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "modificato"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "vedi domande con i tag '%(tag)s'"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "cancella questo commento"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "aggiungi commento"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "visualizza <strong>%(counter)s</strong> commento aggiuntivo"
-msgstr[1] "visualizza <strong>%(counter)s</strong> commenti aggiuntivi"
-
-#: skins/default/templates/macros.html:310
-#, fuzzy, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "visualizza <strong>%(counter)s</strong> commento aggiuntivo"
-msgstr[1] "visualizza <strong>%(counter)s</strong> commenti aggiuntivi"
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "Immagine gravatar per %(username)s "
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "lo stato dell'utente %(username)s è \"%(status)s\""
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "precedente"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "pagina corrente"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "pagina %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "pagina successiva"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "post per pagina"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr "risposte per %(username)s"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, fuzzy, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "hai una nuova risposta"
msgstr[1] "hai %(response_count)s nuove risposte"
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "nessuna nuova risposta"
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, fuzzy, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "Ha segnalato un post come inappropriato"
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, fuzzy, python-format
msgid "%(new)s new flagged posts"
msgstr "Ha segnalato un post come inappropriato"
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, fuzzy, python-format
msgid "%(seen)s flagged posts"
msgstr "Ha segnalato un post come inappropriato"
@@ -5377,10 +5333,37 @@ msgstr "Ha segnalato un post come inappropriato"
msgid "Questions"
msgstr "Domande"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
-msgstr "Regole per la privacy"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "visualizza <strong>%(counter)s</strong> commento aggiuntivo"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "visualizza <strong>%(counter)s</strong> commento aggiuntivo"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "aggiungi commento"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Rispondi alla tua domanda"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "La tua risposta"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Accedi/registrati per scrivere la tua risposta"
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
@@ -5389,8 +5372,9 @@ msgstr "Modifica domanda"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Cambia tag"
+#, fuzzy
+msgid "Retag question"
+msgstr "Domande simili"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -5445,6 +5429,13 @@ msgstr "Riapri questa domanda?"
msgid "Reopen this question"
msgstr "Riapri questa domanda"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5475,17 +5466,17 @@ msgstr "Accedi per sottoscrivere i tag: %(tags)s"
msgid "Subscribe"
msgstr "usare i tag"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Lista dei tag"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Lista dei tag"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
#, fuzzy
msgid "Sort by &raquo;"
msgstr "Ordina per:"
@@ -5506,7 +5497,7 @@ msgstr "ordina i tag per frequenza d'uso"
msgid "by popularity"
msgstr "per numero di voti"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "Nessun risultato"
@@ -5520,8 +5511,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "punti reputazione"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5552,7 +5545,7 @@ msgstr "utenti contenenti %(suser)s:"
msgid "Nothing found."
msgstr "Nessun utente trovato"
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5569,42 +5562,42 @@ msgstr "contenenti messaggi di %(author_name)s"
msgid "Tagged"
msgstr "con i tag"
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr "Consigli per la ricerca:"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr "azzera autore"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
#, fuzzy
msgid " or "
msgstr "oppure"
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr "azzera i tag"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr "ricomincia da capo"
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
"- per espandere, o raffinare la tua ricerca aggiungendo altri tag o "
"modificando le parole chiave"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr "Suggerimenti per la ricerca:"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr "aggiungi tag e parole chiave per restringere il campo"
@@ -5643,19 +5636,19 @@ msgstr "ricominciando da capo"
msgid "Please always feel free to ask your question!"
msgstr "Ricorda, puoi sempre porre tu stesso una domanda!"
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr "Non hai trovato quello che cercavi?"
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr "Poni tu stesso la domanda!"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
msgid "subscribe to the questions feed"
msgstr "sottoscrivi al feed delle domande"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5667,21 +5660,21 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, fuzzy, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s 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"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, fuzzy, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s 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"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, fuzzy, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5691,11 +5684,11 @@ msgstr "fino a 5 tag, ognuno lungo al massimo 20 caratteri"
#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
@@ -5704,83 +5697,65 @@ msgstr[1] ""
"\n"
"%(counter)s Risposte:"
+#: skins/default/templates/question/answer_tab_bar.html:11
+#, fuzzy
+msgid "Sort by »"
+msgstr "Ordina per:"
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr "mostra prima le risposte più vecchie"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "più vecchie"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "mostra prima le risposte più nuove"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "più nuove"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "mostra prima le risposte più votate"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "più votate"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "Rispondi alla tua domanda"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "Accedi/registrati per scrivere la tua risposta"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "La tua risposta"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
#, fuzzy
msgid "Be the first one to answer this question!"
msgstr "Per favore accetta la migliore risposta per questa domanda:"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
-"<span class='strong big'>Comincia pure a rispondere </span> - la tua "
-"risposta verrà memorizzata e pubblicata non appena accederai o registrerai "
-"un nuovo account. Cerca di dare una <strong>vera risposta</strong>, per "
-"eventuali discussioni <strong>utilizza i commenti</strong> e "
-"<strong>ricordati di votare</strong> (non appena hai fatto il login)!"
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
msgstr ""
-"<span class='big strong'>Rispondi pure alla tua domanda</span>, ma cerca di "
-"dare una <strong>vera risposta</strong>. Puoi sempre <strong>modificare la "
-"tua domanda</strong>. <strong>Usa i commenti per discutere</strong> e "
-"<strong>ricordati di votare :)</strong> per le risposte migliori (e per "
-"quelle peggiori!)"
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+msgid ""
+"<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)!"
msgstr ""
-"<span class='big strong'>Cerca di dare una vera risposta</span>. Se vuoi "
-"solo aggiungere un commento a una domanda/risposta, <strong>usa i commenti</"
-"strong>. Ricorda che puoi <strong>modificare una vecchia risposta</strong> "
-"invece di scriverne una nuova. Inoltre, <strong>ricordati di votare</strong> "
-"&mdash; ci permette di individuare facilmente le domande e risposte migliori!"
-
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
-msgstr "Accedi/registrati per scrivere la tua risposta"
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Rispondi alla domanda"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5798,60 +5773,60 @@ msgstr "oppure"
msgid "email"
msgstr "e-mail:"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Tag"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "clicca qui per vedere le domande con più risposte"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "Chiudi domanda"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "Chiudi domanda"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "clicca qui per vedere le domande con più risposte"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "Chiudi domanda"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "notifiche via e-mail cancellate"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "sottoscrivi al feed delle domande"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "sottoscrivi al feed delle domande"
@@ -5861,60 +5836,46 @@ msgid "Stats"
msgstr ""
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "Chiesta il"
+#, fuzzy
+msgid "Asked"
+msgstr "chiesto il"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "domanda consultata"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "volte"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "Aggiornata l'ultima voltail"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Domande simili"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr ""
-"<strong>Segnalami</strong> nuove risposte o aggiornamenti via e-mail ogni "
-"giorno"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
-msgstr ""
-"<strong>Segnalami</strong> nuove risposte o aggiornamenti via e-mail ogni "
-"settimana"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
#, fuzzy
-msgid "Notify me immediately when there are any new answers"
+msgid "Email me when there are any new answers"
msgstr ""
"<strong>Segnalami</strong> nuove risposte o aggiornamenti via e-mail ogni "
"settimana"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
-msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr ""
-"(nota: puoi <strong><a href='%(profile_url)s?"
-"sort=email_subscriptions'>modificare</a></strong> la frequenza con cui "
-"ricevi gli aggiornamenti)"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
"Se ti registri, potrai scegliere di ricevere periodicamente aggiornamenti "
"via e-mail sullo stato di questa domanda."
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+
#: skins/default/templates/user_profile/user.html:12
#, python-format
msgid "%(username)s's profile"
@@ -5946,8 +5907,13 @@ msgstr "Utente registrato"
msgid "Screen Name"
msgstr "Nome visualizzato"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "Account eliminato."
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Conferma"
@@ -5960,18 +5926,21 @@ msgstr "notifiche"
msgid "Email subscription settings"
msgstr "E-mail di notifica"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
msgstr ""
-"<span class='big strong'>Modifica la frequenza delle e-mail di notifica</"
-"span> Ricevi aggiornamenti via e-mail sulle domande che ti interessano, e "
-"<strong><br/>aiuta la comunità</strong> rispondendo alle domande degli "
-"altri. Se non vuoi ricevere e-mail, seleziona 'mai' qui sotto.<br/>Le e-mail "
-"di aggiornamento vengono spedite solo quando ci sono nuove attività."
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Non spedire più nessuna e-mail"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Il tuo indirizzo e-mail</strong> (<i>deve essere valido, non sarà "
+"mai rivelato agli altri utenti</i>)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -6000,21 +5969,25 @@ msgid "flagged items (%(flag_count)s)"
msgstr "per favore usa un numero uguale o inferiore a %(tag_count)d tag"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
#, fuzzy
msgid "select:"
msgstr "cancella"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
#, fuzzy
msgid "seen"
msgstr "ultimo accesso"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
#, fuzzy
msgid "new"
msgstr "più recenti"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
#, fuzzy
msgid "none"
msgstr "bronzo"
@@ -6033,6 +6006,16 @@ msgstr "ha accettato una risposta"
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "vedi tutti i tag"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "cancella"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "aggiorna profilo"
@@ -6047,7 +6030,8 @@ msgid "real name"
msgstr "nome vero"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "membro dal"
#: skins/default/templates/user_profile/user_info.html:63
@@ -6055,8 +6039,9 @@ msgid "last seen"
msgstr "ultimo accesso"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr "sito personale"
+#, fuzzy
+msgid "website"
+msgstr "Sito web"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -6199,19 +6184,16 @@ msgid "%(username)s's network is empty"
msgstr "profilo dell'utente %(username)s"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr "attività"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "Registro dei tuoi punti reputazione"
@@ -6234,21 +6216,17 @@ msgstr[0] "<span class=\"count\">%(counter)s</span> Domanda"
msgstr[1] "<span class=\"count\">%(counter)s</span> Domande"
#: skins/default/templates/user_profile/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] "<span class=\"count\">%(counter)s</span> Risposta"
-msgstr[1] "<span class=\"count\">%(counter)s</span> Risposte"
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "risposta"
+msgstr[1] "risposta"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "questa risposta ha ricevuto %(answer_score)s voti"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "questa risposta è stata accettata dall'autore"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6286,14 +6264,14 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] "<span class=\"count\">%(counter)s</span> Tag"
msgstr[1] "<span class=\"count\">%(counter)s</span> Tag"
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
msgstr[0] "<span class=\"count\">%(counter)s</span> Medaglia"
msgstr[1] "<span class=\"count\">%(counter)s</span> Medaglie"
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "consigli per le risposte"
@@ -6303,7 +6281,7 @@ msgstr "consigli per le risposte"
msgid "User profile"
msgstr "profilo utente"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "commenti e risposte a domande"
@@ -6312,48 +6290,40 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "registro dei punti reputazione"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "reputazione"
-
#: skins/default/templates/user_profile/user_tabs.html:25
#, fuzzy
msgid "questions that user is following"
msgstr "domande preferite da questo utente"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "attività recente"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "elenco dei voti dati"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
msgstr "voti"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "impostazioni notifiche via e-mail"
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr "modera questo utente"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "voti"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "consigli per le risposte"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "fai in modo che la tua risposta sia interessante per la comunità"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6361,8 +6331,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/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "includi tutti i dettagli necessari"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "sii sufficientemente dettagliato"
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -6376,7 +6348,8 @@ msgstr "vedi le domande frequenti"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "sintassi Markdown"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6401,11 +6374,6 @@ msgid "**bold** or __bold__"
msgstr "**grassetto** o __grassetto__"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "collegamento"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6432,10 +6400,6 @@ msgstr "sono supportati anche alcuni semplici tag HTML"
msgid "learn more about Markdown"
msgstr "informazioni su Markdown"
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "chiedi"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
@@ -6445,26 +6409,25 @@ msgstr ""
"pubblicata non appena ti sarai registrato. Accedere al proprio account "
"richiede circa 30 secondi, registrarne uno nuovo meno di un minuto."
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
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/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Accedi/Registrati per porre una domanda"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Chiedi"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6480,10 +6443,15 @@ msgid "about"
msgstr "informazioni su Askbot"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "privacy"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "contatti"
@@ -6504,17 +6472,10 @@ msgstr "utenti"
msgid "badges"
msgstr "medaglie"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "Suggerimenti"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "poni una domanda interessante per gli altri"
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "sii sufficientemente dettagliato"
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr "fai in modo che la tua risposta sia interessante per la comunità"
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
@@ -6535,28 +6496,28 @@ msgid_plural "votes"
msgstr[0] "voto"
msgstr[1] "voti"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr "vedi domande senza risposta"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "vedi le tue domande preferite"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "Poni tu stesso la domanda!"
@@ -6570,23 +6531,26 @@ msgstr ""
msgid "badges:"
msgstr "medaglie:"
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "logout"
+#: skins/default/templates/widgets/user_navigation.html:9
+#, fuzzy
+msgid "sign out"
+msgstr "signout/"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "login"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "Puoi accedere al tuo account da qui:"
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr "impostazioni"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "no"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr "bronzo"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr ""
@@ -6603,7 +6567,8 @@ msgid "this field is required"
msgstr "campo obbligatorio"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "Scegli un nome utente"
#: utils/forms.py:69
@@ -6637,8 +6602,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "la tua e-mail <i>(resterà privata)</i>"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6652,17 +6617,13 @@ msgstr "inserisci un indirizzo e-mail valido"
msgid "this email is already used by someone else, please choose another"
msgstr "questa e-mail è già in uso, scegline un'altra"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "Password"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "la password è obbligatoria"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "Password <i>(per conferma)</i>"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6672,28 +6633,59 @@ msgstr "per favore, digita di nuovo la password"
msgid "sorry, entered passwords did not match, please try again"
msgstr "le due password non coincidono, riprova"
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "2 giorni fa"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "ieri"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] "%(hr)d ora fa"
msgstr[1] "%(hr)d ore fa"
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] "%(min)d minuto fa"
msgstr[1] "%(min)d minuti fa"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6706,175 +6698,191 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr ""
+"Spiacenti, gli utenti anonimi non possono accedere ai messaggi in arrivo"
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "mi spiace, devi essere registrato per votare"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "hai superato il massimo giornaliero di voti consentiti"
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Puoi votare ancora %(votes_left)s volte oggi"
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr ""
-"Spiacenti, gli utenti anonimi non possono accedere ai messaggi in arrivo"
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "Mi spiace, qualcosa non va qui..."
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "mi spiace, devi essere registrato per accettare una risposta"
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr ""
"La tua iscrizione è stata registrata, ma il tuo indirizzo e-mail %(email)s "
"dev'essere verificato, leggi <a href='%(details_url)s'>qui</a> per maggiori "
"dettagli"
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr ""
"la frequenza delle notifiche via e-mail è stata impostata a 'ogni giorno'"
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr "Accedi per sottoscrivere i tag: %(tags)s"
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr "Accedi per votare"
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Accedi per votare"
+
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "il %(date)s"
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Contatti forum Q&A"
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Grazie per il tuo messaggio!"
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
"Siamo curiosi di sentire la tua opinione! Sarà per la prossima volta :)"
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr "Regole per la privacy"
+
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s domanda, taggata"
msgstr[1] "%(q_num)s domande, taggate"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d%(badge_level)s medaglia"
-msgstr[1] "%(badge_count)d%(badge_level)s medaglie"
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr "Mi spiace, questo commento è stata cancellato e non è più accessibile"
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr "modera utente"
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "profilo utente"
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "profilo"
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "attività recente"
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "profilo utente &mdash; attività recente"
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "profilo utente &mdash; risposte"
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "profilo utente &mdash; voti"
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "punti reputazione"
+#: views/users.py:701
+msgid "user karma"
+msgstr ""
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "profilo utente &mdash; reputazione"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "domande preferite"
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "profilo utente &mdash; domande preferite"
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "i cambiamenti sono stati salvati"
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "notifiche via e-mail cancellate"
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "profilo utente &mdash; notifiche via e-mail"
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr "Mi spiace, gli utenti non registrati non possono caricare file."
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "i tipi di file consentiti sono: '%(file_types)s'"
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "la dimensione massima di file caricabile è %(file_size)sK"
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr "Errore nel caricamento del file. Contatta un amministratore."
-#: views/writers.py:192
-msgid "Please log in to ask questions"
-msgstr "Accedi per fare una domanda"
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr "Accedi per rispondere alle domande"
-#: views/writers.py:600
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -6883,12 +6891,12 @@ msgstr ""
"Gli utenti non registrati non possono lasciare commenti. <a href="
"\"%(sign_in_url)s\">Accedi o registrati</a>."
-#: views/writers.py:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
"Mi spiace, gli utenti non registrati non possono modificare i commenti."
-#: views/writers.py:658
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -6897,25 +6905,632 @@ msgstr ""
"Gli utenti non registrati non possono cancellare commenti. <a href="
"\"%(sign_in_url)s\">Accedi o registrati</a>."
-#: views/writers.py:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "Mi spiace, ci sono dei problemi tecnici"
-#~ msgid "question content must be > 10 characters"
-#~ msgstr "la domanda deve contenere più di 10 caratteri"
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "usa-questi-caratteri-nei-tag"
-#~ msgid "Question: \"%(title)s\""
-#~ msgstr "Domanda: \"%(title)s\""
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "questa email verrà linkata a gravatar"
+
+#~ msgid "URL for the LDAP service"
+#~ msgstr "URL del servizio LDAP"
+
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Spiega come modificare la password LDAP"
+
+#~ msgid "question_answered"
+#~ msgstr "risposta_a_una_domanda"
+
+#~ msgid "question_commented"
+#~ msgstr "commento_a_una_domanda"
+
+#~ msgid "answer_commented"
+#~ msgstr "risposta_commentata"
+
+#~ msgid "answer_accepted"
+#~ msgstr "risposta_accettata"
+
+#~ msgid "Incorrect username."
+#~ msgstr "Mi spiace, questo username non esiste"
+
+#~ 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>"
+
+#~ 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?"
+
+#~ 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."
+
+#~ 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."
+
+#~ 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."
+
+#~ 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>"
+
+#~ 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"
+
+#~ 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."
+
+#~ 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."
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr ""
+#~ "Hai già segnalato questo messaggio come inappropriato, non puoi farlo una "
+#~ "seconda volta."
+
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr ""
+#~ "Non puoi segnalare questo messaggio come inappropriato perché il tuo "
+#~ "account è stato bloccato."
+
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr ""
+#~ "Non puoi segnalare questo messaggio come inappropriato perché il tuo "
+#~ "account è sospeso."
+
+#~ 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."
+
+#~ 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."
+
+#, fuzzy
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr ""
+#~ "Non puoi segnalare questo messaggio come inappropriato perché il tuo "
+#~ "account è stato bloccato."
+
+#, fuzzy
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr ""
+#~ "Non puoi segnalare questo messaggio come inappropriato perché il tuo "
+#~ "account è sospeso."
#, fuzzy
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] ""
+#~ "Mi spiace, servono più di %(min_rep)s punti reputazione per segnalare un "
+#~ "post come inappropriato."
+#~ msgstr[1] ""
+#~ "Mi spiace, servono più di %(min_rep)s punti reputazione per segnalare un "
+#~ "post come inappropriato."
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "Mi spiace, non è possibile annullare voti."
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s ha modificato la sua domanda"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr "%(people)s ha/hanno scritto %(new_answer_count)s nuova/e risposta/e"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s ha/hanno commentato la domanda"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s ha/hanno commentato alcune risposte"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s ha/hanno commentato una risposta"
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "Se vuoi usare un nuovo indirizzo per le<strong>e-mail di notifica</"
+#~ "strong>, \n"
+#~ "<span class=\"strong big\">inseriscilo qui sotto il nuovo indirizzo</"
+#~ "span>.<br>L'indirizzo corrente è <strong>%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Inserisci il tuo indirizzo e-mail qui sotto</"
+#~ "span> &Egrave; obbligatorio inserire un indirizzo e-mail valido. Se lo "
+#~ "desideri, puoi ricevere <strong>messaggi di notifica</strong> sulle "
+#~ "domande che ti interessano o sull'intero forum. Inoltre, il tuo indirizzo "
+#~ "è usato per creare un'immagine <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> unica per il "
+#~ "tuo account. Il tuo indirizzo e-mail non sarà mai pubblicato o comunicato "
+#~ "a terze parti."
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Il tuo nuovo indirizzo e-mail:</strong> (non verrà <strong>mai</"
+#~ "strong> rivelato agli altri utenti, deve essere valido)"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Un'e-mail di verifica è stata spedita a "
+#~ "%(email)s.</span> <strong>Clicca sul link contenuto nell'e-mail</strong> "
+#~ "per verificare il tuo indirizzo. La verifica dell'e-mail è necessaria "
+#~ "per l'utilizzo del forum. Se preferisci usare <strong>un altro indirizzo</"
+#~ "strong>, puoi <a href='%(change_email_url)s'><strong>cambiarlo di nuovo</"
+#~ "strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Il tuo indirizzo e-mail %(email)s non è stato "
+#~ "modificato.</span> Se decidi di cambiarlo, puoi farlo dal tuo profilo "
+#~ "utente o utilizzare di nuovo <a "
+#~ "href='%(change_email_url)s'><strong>questa pagina</strong></a>."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Il tuo indirizzo e-mail è ora %(email)s.</span> "
+#~ "Gli aggiornamenti sulle domande di tuo interesse saranno spediti a questo "
+#~ "indirizzo. Le e-mail di notifica vengono spedite solo in caso di "
+#~ "aggiornamenti, al massimo una volta al giorno."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Grazie per aver verificato il tuo indirizzo e-"
+#~ "mail!</span> Ora puoi <strong>scrivere domande</strong> e "
+#~ "<strong>risposte</strong>. Puoi inoltre <strong>seguire gli sviluppi</"
+#~ "strong> delle domande che più ti interessano: quando ci sono novità, ti "
+#~ "sarà spedita un'e-mail di notifica <strong>una volta al giorno</strong> o "
+#~ "meno."
+
+#~ msgid "email key not sent"
+#~ msgstr "E-mail di verifica non spedita"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Il tuo indirizzo %(email)s è già stato "
+#~ "verificato</span>, quindi l'e-mail non è stata spedita. Se necessario "
+#~ "puoi <a href='%(change_link)s'>cambiare</a> l'indirizzo usato per le "
+#~ "notifiche."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">&Egrave; la prima volta che accedi con il "
+#~ "tuo account OpenID %(provider)s.</span> Imposta il <strong>nome "
+#~ "visualizzato</strong> e il tuo <strong>indirizzo e-mail</strong>. Con "
+#~ "esso puoi <strong>ricevere aggiornamenti</strong> sulle domande che più "
+#~ "ti interessano; verrà inoltre usato per creare un'immagine unica "
+#~ "associata al tuo account, detta <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<p><span class='strong big'>Oops... l'utente %(username)s esiste già.</"
+#~ "span></p><p>Scegli un altro nome utente da visualizzare per il tuo "
+#~ "account OpenID %(provider)s. Inoltre, è necessario inserire "
+#~ "<strong>indirizzo e-mail</strong>. Con esso puoi <strong>ricevere "
+#~ "aggiornamenti</strong> sulle domande che più ti interessano; verrà "
+#~ "inoltre usato per creare un'immagine unica associata al tuo account, "
+#~ "detta <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><p><span class=\"big strong\">&Egrave; la prima volta che accedi con "
+#~ "il tuo account OpenID %(provider)s.</span> </p><p>Puoi utilizzare il tuo "
+#~ "nome utente %(provider)s come <strong>nome visualizzato</strong> oppure "
+#~ "sceglierne uno nuovo.</p><p>Inoltre, è necessario inserire un "
+#~ "<strong>indirizzo e-mail</strong> valido. Con esso puoi <strong>ricevere "
+#~ "aggiornamenti</strong> sulle domande che più ti interessano; verrà "
+#~ "inoltre usato per creare un'immagine unica associata al tuo account, "
+#~ "detta <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">&Egrave; la prima volta che accedi con il "
+#~ "tuo account Facebook.</span> Scegli il tuo <strong>nome visualizzato</"
+#~ "strong> e imposta il tuo <strong>indirizzo e-mail</strong>. Con esso puoi "
+#~ "<strong>ricevere aggiornamenti</strong> sulle domande che più ti "
+#~ "interessano; verrà inoltre usato per creare un'immagine unica associata "
+#~ "al tuo account, detta <a href='%(gravatar_faq_url)s'><strong>gravatar</"
+#~ "strong></a>.</p>"
+
+#~ msgid "This account already exists, please use another."
+#~ msgstr "Questo nome utente è già in uso, scegline un altro."
+
+#~ msgid "Screen name label"
+#~ msgstr ""
+#~ "<strong>Nome visualizzato</strong> (<i>verrà mostrato agli altri utenti</"
+#~ "i>)"
+
+#~ msgid "Email address label"
+#~ msgstr ""
+#~ "<strong>Indirizzo e-mail</strong> (<i><strong>non</strong> verrà mostrato "
+#~ "agli altri utenti, dev'essere valido</i>)"
+
+#~ msgid "receive updates motivational blurb"
+#~ msgstr ""
+#~ "<strong>Ricevi aggiornamenti via e-mail</strong> &mdash; questo aiuterà "
+#~ "la nostra comunità a crescere e diventare più utile.<br/>Normalmente "
+#~ "questo forum <span class='orange'>Q&amp;A</span> ti spedirà <strong>un'e-"
+#~ "mail a settimana</strong> con un riassunto delle novità (se ce ne sono)"
+#~ "<br/> Se lo desideri, modifica queste impostazioni."
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr ""
+#~ "Quando accederai al sito, sulla destra troverai il pannello con i filtri "
+#~ "tag."
+
+#~ msgid "create account"
+#~ msgstr "registrati"
+
#~ msgid ""
-#~ "If you believe that this message was sent in mistake - \n"
-#~ "no further action is needed. Just ignore this email, we apologize\n"
-#~ "for any inconvenience."
+#~ "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 ""
#~ "Se hai ricevuto questo messaggio per errore, basta che tu ignori questa e-"
#~ "mail. Ci scusiamo per il problema."
+#~ msgid "Login"
+#~ msgstr "Accedi"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "Perché usare OpenID?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr ""
+#~ "Con OpenID non devi creare un nome utente e una password per ogni sito "
+#~ "che utilizzi."
+
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "Puoi riutilizzare in completa sicurezza le stesse credenziali per tutti i "
+#~ "siti abilitati."
+
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "Ci sono più di 160 milioni di account OpenID in uso. Più di 10.000 siti "
+#~ "utilizzano OpenID."
+
+#~ msgid "openid is supported open standard"
+#~ msgstr ""
+#~ "OpenID è basato su uno standard aperto, supportato da molte "
+#~ "organizzazioni."
+
+#~ msgid "Find out more"
+#~ msgstr "Scopri di più"
+
+#~ msgid "Get OpenID"
+#~ msgstr "Ottieni un OpenID"
+
+#~ msgid "Traditional signup info"
+#~ msgstr ""
+#~ "<span class='strong big'>Se preferisci, puoi scegliere un nome utente e "
+#~ "una password per questo forum qui. Però</span>, considera che questo sito "
+#~ "supporta anche la registrazione via <strong>OpenID</strong>. Con "
+#~ "<strong>OpenID</strong> puoi riutilizzare il tuo account su uno dei "
+#~ "maggiori siti (per esempio Gmail o AOL), senza dover rivelare a noi né a "
+#~ "nessuno la tua password e senza doverne scegliere una nuova."
+
+#~ msgid "Create Account"
+#~ msgstr "Crea account"
+
+#~ msgid "answer permanent link"
+#~ msgstr "link permanente alla risposta"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "vedi tutti i tag"
+
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "%(question_author)s ha scelto questa come risposta migliore"
+
+#~ msgid "Related tags"
+#~ msgstr "Tag"
+
+#~ msgid "Ask a question"
+#~ msgstr "Chiedi"
+
+#~ msgid "Badges summary"
+#~ msgstr "Elenco medaglie"
+
+#~ 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à."
+
+#~ 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à."
+
+#~ msgid "bronze badge description"
+#~ msgstr ""
+#~ "Se partecipi regolarmente a questa comunità, verrai sicuramente premiato "
+#~ "con delle medaglie di bronzo."
+
+#~ 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."
+
+#~ 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."
+
+#~ msgid "use tags"
+#~ msgstr "usare i tag"
+
+#~ msgid "what is gravatar"
+#~ msgstr ""
+#~ "Come cambio la mia immagine personale (gravatar)? Che cos'è il gravatar?"
+
+#~ 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>"
+
+#, fuzzy
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "Mi piace questo messaggio (clicca una seconda volta per annullare)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "Mi piace questa risposta (clicca una seconda volta per annullare)"
+
+#, fuzzy
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr ""
+#~ "Non mi piace questo messaggio (clicca una seconda volta per annullare)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr ""
+#~ "Non mi piace questa risposta (clicca una seconda volta per annullare)"
+
+#, fuzzy
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] "visualizza <strong>%(counter)s</strong> commento aggiuntivo"
+#~ msgstr[1] "visualizza <strong>%(counter)s</strong> commenti aggiuntivi"
+
+#~ msgid "posts per page"
+#~ msgstr "post per pagina"
+
+#~ msgid "Change tags"
+#~ msgstr "Cambia tag"
+
+#~ msgid "reputation"
+#~ msgstr "punti reputazione"
+
+#~ msgid "oldest answers"
+#~ msgstr "più vecchie"
+
+#~ msgid "newest answers"
+#~ msgstr "più nuove"
+
+#~ msgid "popular answers"
+#~ msgstr "più votate"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr ""
+#~ "<span class='strong big'>Comincia pure a rispondere </span> - la tua "
+#~ "risposta verrà memorizzata e pubblicata non appena accederai o "
+#~ "registrerai un nuovo account. Cerca di dare una <strong>vera risposta</"
+#~ "strong>, per eventuali discussioni <strong>utilizza i commenti</strong> e "
+#~ "<strong>ricordati di votare</strong> (non appena hai fatto il login)!"
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr ""
+#~ "<span class='big strong'>Rispondi pure alla tua domanda</span>, ma cerca "
+#~ "di dare una <strong>vera risposta</strong>. Puoi sempre "
+#~ "<strong>modificare la tua domanda</strong>. <strong>Usa i commenti per "
+#~ "discutere</strong> e <strong>ricordati di votare :)</strong> per le "
+#~ "risposte migliori (e per quelle peggiori!)"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr ""
+#~ "<span class='big strong'>Cerca di dare una vera risposta</span>. Se vuoi "
+#~ "solo aggiungere un commento a una domanda/risposta, <strong>usa i "
+#~ "commenti</strong>. Ricorda che puoi <strong>modificare una vecchia "
+#~ "risposta</strong> invece di scriverne una nuova. Inoltre, "
+#~ "<strong>ricordati di votare</strong> &mdash; ci permette di individuare "
+#~ "facilmente le domande e risposte migliori!"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Accedi/registrati per scrivere la tua risposta"
+
+#~ msgid "Answer the question"
+#~ msgstr "Rispondi alla domanda"
+
+#~ msgid "question asked"
+#~ msgstr "Chiesta il"
+
+#~ msgid "question was seen"
+#~ msgstr "domanda consultata"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Segnalami</strong> nuove risposte o aggiornamenti via e-mail ogni "
+#~ "giorno"
+
+#, fuzzy
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Segnalami</strong> nuove risposte o aggiornamenti via e-mail ogni "
+#~ "settimana"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr ""
+#~ "(nota: puoi <strong><a href='%(profile_url)s?"
+#~ "sort=email_subscriptions'>modificare</a></strong> la frequenza con cui "
+#~ "ricevi gli aggiornamenti)"
+
+#~ msgid "email subscription settings info"
+#~ msgstr ""
+#~ "<span class='big strong'>Modifica la frequenza delle e-mail di notifica</"
+#~ "span> Ricevi aggiornamenti via e-mail sulle domande che ti interessano, e "
+#~ "<strong><br/>aiuta la comunità</strong> rispondendo alle domande degli "
+#~ "altri. Se non vuoi ricevere e-mail, seleziona 'mai' qui sotto.<br/>Le e-"
+#~ "mail di aggiornamento vengono spedite solo quando ci sono nuove attività."
+
+#~ msgid "Stop sending email"
+#~ msgstr "Non spedire più nessuna e-mail"
+
+#~ msgid "user website"
+#~ msgstr "sito personale"
+
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] "<span class=\"count\">%(counter)s</span> Risposta"
+#~ msgstr[1] "<span class=\"count\">%(counter)s</span> Risposte"
+
+#~ msgid "reputation history"
+#~ msgstr "reputazione"
+
+#~ msgid "recent activity"
+#~ msgstr "attività recente"
+
+#~ msgid "casted votes"
+#~ msgstr "voti"
+
+#~ msgid "answer tips"
+#~ msgstr "consigli per le risposte"
+
+#~ msgid "please try to provide details"
+#~ msgstr "includi tutti i dettagli necessari"
+
+#~ msgid "ask a question"
+#~ msgstr "chiedi"
+
+#~ 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."
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Accedi/Registrati per porre una domanda"
+
+#~ msgid "question tips"
+#~ msgstr "Suggerimenti"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "poni una domanda interessante per gli altri"
+
+#~ msgid "logout"
+#~ msgstr "logout"
+
+#~ msgid "login"
+#~ msgstr "login"
+
+#~ msgid "no items in counter"
+#~ msgstr "no"
+
+#~ msgid "your email address"
+#~ msgstr "la tua e-mail <i>(resterà privata)</i>"
+
+#~ msgid "choose password"
+#~ msgstr "Password"
+
+#~ msgid "retype password"
+#~ msgstr "Password <i>(per conferma)</i>"
+
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d%(badge_level)s medaglia"
+#~ msgstr[1] "%(badge_count)d%(badge_level)s medaglie"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "punti reputazione"
+
+#~ msgid "Please log in to ask questions"
+#~ msgstr "Accedi per fare una domanda"
+
+#~ msgid "question content must be > 10 characters"
+#~ msgstr "la domanda deve contenere più di 10 caratteri"
+
+#~ msgid "Question: \"%(title)s\""
+#~ msgstr "Domanda: \"%(title)s\""
+
#, fuzzy
#~ msgid "(please enter a valid email)"
#~ msgstr "inserisci un indirizzo e-mail valido"
@@ -6959,9 +7574,6 @@ msgstr "Mi spiace, ci sono dei problemi tecnici"
#~ msgid "Question tags"
#~ msgstr "Domande"
-#~ msgid "questions"
-#~ msgstr "domande"
-
#~ msgid "search"
#~ msgstr "cerca"
@@ -6975,9 +7587,6 @@ msgstr "Mi spiace, ci sono dei problemi tecnici"
#~ msgid "In:"
#~ msgstr "In:"
-#~ msgid "Sort by:"
-#~ msgstr "Ordina per:"
-
#~ msgid "Email (not shared with anyone):"
#~ msgstr "Email (non condivisa con altri):"
diff --git a/askbot/locale/it/LC_MESSAGES/djangojs.po b/askbot/locale/it/LC_MESSAGES/djangojs.po
index 9bb85247..19f55c3a 100644
--- a/askbot/locale/it/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/it/LC_MESSAGES/djangojs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:52-0500\n"
"PO-Revision-Date: 2011-11-19 06:41+0100\n"
"Last-Translator: Luca Ferroni <luca@befair.it>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,150 +75,83 @@ msgstr ""
msgid "loading..."
msgstr "Caricamento..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "Il campo Tags non può essere vuoto"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "il contenuto non può essere vuoto"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "per favore inserisci più di %s caratteri"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "Per favore inserisci il titolo"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "per favore inserisci almeno %s caratteri"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "privilegi non sufficienti"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr ""
"non è possibile assegnare come miglior risposta ad una propria domanda una "
"propria risposta"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "Per favore effettua il login"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "Gli utenti anonimi non possono votare "
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
"sei certo che questo post sia offensivo, contenga spam, pubblicità, "
"osservazioni poco idonee, ecc.?"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr ""
+"sei certo che questo post sia offensivo, contenga spam, pubblicità, "
+"osservazioni poco idonee, ecc.?"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "Gli utenti anonimi non possono flaggare come offensivo questo post"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "conferma la cancellazione"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "Gli utenti anonimi non possono cancellare/annullare la cancellazione"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "Post recuperato"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "Post eliminato"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "Segui"
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] "seguito da %s persona"
-msgstr[1] "seguito da %s persone"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>Segui</div><div class=\"unfollow\">Non seguire</div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "elimina"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "elimina"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "OK"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "%s caratteri rimanenti"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "%s caratteri rimanenti"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "Elimina questo commento"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "Vuoi davvero cancellare il commento?"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "Per piacere inserisce un titolo per la tua domanda (>10 caratteri)"
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "Il tag \"<span></span>\" corrisponde a:"
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "e altre %s non mostrate..."
@@ -232,116 +165,152 @@ msgid_plural "Delete these notifications?"
msgstr[0] ""
msgstr[1] ""
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "Elimina questo commento"
+msgstr[1] "Elimina questo commento"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "Elimina questo commento"
+msgstr[1] "Elimina questo commento"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr "<a href=\"%(signin_url)s\">Entra</a> per seguire %(username)s"
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "non seguire %s"
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "stai seguendo %s"
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "segui %s"
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "grassetto"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "corsivo"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "Link"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "cita"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "Testo preformattato"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "Immagine"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "Lista numerata"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "Lista"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "Titolo"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "barra orizzontale"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "annulla"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "Esegui nuovamente"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
"inserisci l'URL dell'immagine, es. http://www.example.com/immagine.jpg "
"\"titolo immagine\""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr "inserisci l'indirizzo web, e.g. <br />http://www.askbot.org/ </p>"
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
+#~ msgid "tags cannot be empty"
+#~ msgstr "Il campo Tags non può essere vuoto"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
+#~ msgid "content cannot be empty"
+#~ msgstr "il contenuto non può essere vuoto"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
+#~ msgid "%s content minchars"
+#~ msgstr "per favore inserisci più di %s caratteri"
+
+#~ msgid "please enter title"
+#~ msgstr "Per favore inserisci il titolo"
+
+#~ msgid "%s title minchars"
+#~ msgstr "per favore inserisci almeno %s caratteri"
+
+#~ msgid "Follow"
+#~ msgstr "Segui"
+
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] "seguito da %s persona"
+#~ msgstr[1] "seguito da %s persone"
+
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr "<div>Segui</div><div class=\"unfollow\">Non seguire</div>"
+
+#~ msgid "undelete"
+#~ msgstr "elimina"
+
+#~ msgid "delete"
+#~ msgstr "elimina"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "%s caratteri rimanenti"
+
+#~ msgid "%s characters left"
+#~ msgstr "%s caratteri rimanenti"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "Vuoi davvero cancellare il commento?"
diff --git a/askbot/locale/ja/LC_MESSAGES/django.po b/askbot/locale/ja/LC_MESSAGES/django.po
index 37dda2ea..37b98fa3 100644
--- a/askbot/locale/ja/LC_MESSAGES/django.po
+++ b/askbot/locale/ja/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-11 22:12-0500\n"
-"PO-Revision-Date: 2012-03-10 09:03+0000\n"
+"POT-Creation-Date: 2012-04-18 18:49-0500\n"
+"PO-Revision-Date: 2012-04-03 05:10+0000\n"
"Last-Translator: Tomoyuki KATO <tomo@dream.daynight.jp>\n"
"Language-Team: Japanese (http://www.transifex.net/projects/p/askbot/language/"
"ja/)\n"
@@ -78,8 +78,7 @@ msgstr ""
msgid "content"
msgstr "内容"
-#: forms.py:185 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "タグ"
@@ -94,36 +93,36 @@ msgid_plural ""
"be used."
msgstr[0] ""
-#: forms.py:221 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "タグが必須です"
-#: forms.py:230
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "%(tag_count)d 個未満のタグを使用してください"
-#: forms.py:238
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:247
+#: forms.py:249
#, 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] "各タグは %(max_chars)d 文字未満でなければいけません"
-#: forms.py:256
+#: forms.py:258
msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:292
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:293
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -131,11 +130,11 @@ msgstr ""
"コミュニティー wikiオプションを選択した場合、質問と回答はポイントを生成せず、"
"作者名は表示されない"
-#: forms.py:309
+#: forms.py:311
msgid "update summary:"
msgstr "サマリーを更新:"
-#: forms.py:310
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -143,197 +142,219 @@ msgstr ""
"あなたのリビジョンの要約サマリ(たとえば、スペル修正、文法修正、スタイル改善"
"など。ここオプションです。)を入力してください"
-#: forms.py:384
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr ""
-#: forms.py:398 const/__init__.py:253
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr ""
-#: forms.py:399 const/__init__.py:254
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr ""
-#: forms.py:400 const/__init__.py:255
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr ""
-#: forms.py:401 const/__init__.py:256
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr ""
-#: forms.py:403
+#: forms.py:405
msgid "administrator"
-msgstr ""
+msgstr "管理者"
-#: forms.py:404 const/__init__.py:252
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
-msgstr ""
+msgstr "調停者"
-#: forms.py:424
+#: forms.py:426
msgid "Change status to"
msgstr ""
-#: forms.py:451
+#: forms.py:453
msgid "which one?"
msgstr ""
-#: forms.py:472
+#: forms.py:474
msgid "Cannot change own status"
msgstr ""
-#: forms.py:478
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr ""
-#: forms.py:485
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr ""
-#: forms.py:491
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr ""
-#: forms.py:497
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr ""
-#: forms.py:506
+#: forms.py:508
msgid "Subject line"
msgstr ""
-#: forms.py:513
+#: forms.py:515
msgid "Message text"
msgstr "メッセージ文"
-#: forms.py:528
+#: forms.py:530
msgid "Your name (optional):"
msgstr ""
-#: forms.py:529
+#: forms.py:531
msgid "Email:"
msgstr ""
-#: forms.py:531
+#: forms.py:533
msgid "Your message:"
msgstr "メッセージ:"
-#: forms.py:536
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:558
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:597
+#: forms.py:599
msgid "ask anonymously"
msgstr "匿名で質問する"
-#: forms.py:599
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:752
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:756
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:814
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:827
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:871
+#: forms.py:888
msgid "Real name"
msgstr "実名"
-#: forms.py:878
+#: forms.py:895
msgid "Website"
msgstr "ウェブサイト"
-#: forms.py:885
+#: forms.py:902
msgid "City"
msgstr "都市"
-#: forms.py:894
+#: forms.py:911
msgid "Show country"
msgstr "国の表示"
-#: forms.py:899
+#: forms.py:916
msgid "Date of birth"
msgstr "生年月日"
-#: forms.py:900
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "表示されません、年齢の計算に利用します、型式:YYYY-MM-DD"
-#: forms.py:906
+#: forms.py:923
msgid "Profile"
msgstr "プロファイル"
-#: forms.py:915
+#: forms.py:932
msgid "Screen name"
msgstr "スクリーン名"
-#: forms.py:946 forms.py:947
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "このメールアドレスは登録済みです、ほかのものを使って下さい"
-#: forms.py:954
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "電子メールタグフィルターを選択してください"
-#: forms.py:1001
+#: forms.py:1018
msgid "Asked by me"
msgstr "自分からの質問"
-#: forms.py:1004
+#: forms.py:1021
msgid "Answered by me"
msgstr "自分からの回答"
-#: forms.py:1007
+#: forms.py:1024
msgid "Individually selected"
msgstr "個人的に選択された"
-#: forms.py:1010
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "フォーラム全体(タグでフィルターされた)"
-#: forms.py:1014
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr ""
-#: forms.py:1095
+#: forms.py:1112
msgid "please choose one of the options above"
msgstr "上記から一つ選択してください"
-#: forms.py:1098
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "よし、はじめよう!"
-#: forms.py:1101
+#: forms.py:1118
#, python-format
msgid "no %(sitename)s email please, thanks"
msgstr ""
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
#: urls.py:41
msgid "about/"
msgstr ""
@@ -470,47 +491,47 @@ msgstr ""
#: conf/badges.py:41
msgid "Teacher: minimum upvotes for the answer"
-msgstr ""
+msgstr "教師: 回答に対する最少上げ投票"
#: conf/badges.py:50
msgid "Nice Answer: minimum upvotes for the answer"
-msgstr ""
+msgstr "素晴らしい回答: 回答に対する最少上げ投票"
#: conf/badges.py:59
msgid "Good Answer: minimum upvotes for the answer"
-msgstr ""
+msgstr "良い回答: 回答に対する最少上げ投票"
#: conf/badges.py:68
msgid "Great Answer: minimum upvotes for the answer"
-msgstr ""
+msgstr "優秀な回答: 回答に対する最少上げ投票"
#: conf/badges.py:77
msgid "Nice Question: minimum upvotes for the question"
-msgstr ""
+msgstr "素晴らしい質問: 質問に対する最少上げ投票"
#: conf/badges.py:86
msgid "Good Question: minimum upvotes for the question"
-msgstr ""
+msgstr "良い質問: 質問に対する最少上げ投票"
#: conf/badges.py:95
msgid "Great Question: minimum upvotes for the question"
-msgstr ""
+msgstr "優秀な質問: 質問に対する最少上げ投票"
#: conf/badges.py:104
msgid "Popular Question: minimum views"
-msgstr ""
+msgstr "一般的な質問: 最少質問"
#: conf/badges.py:113
msgid "Notable Question: minimum views"
-msgstr ""
+msgstr "重要な質問: 最少表示"
#: conf/badges.py:122
msgid "Famous Question: minimum views"
-msgstr ""
+msgstr "有名な質問: 最少表示"
#: conf/badges.py:131
msgid "Self-Learner: minimum answer upvotes"
-msgstr ""
+msgstr "自己学習者: 最少回答上げ投票"
#: conf/badges.py:140
msgid "Civic Duty: minimum votes"
@@ -720,6 +741,24 @@ msgid ""
"by email"
msgstr ""
+#: conf/email.py:284
+msgid "Enable posting answers and comments by email"
+msgstr ""
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr "外部サービスのキー"
@@ -750,15 +789,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -766,11 +805,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -778,70 +817,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Facebook 秘密鍵"
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr "Twitter 消費者キー"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr "Twitter 消費者シークレット"
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr "LinkedIn 消費者キー"
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr "LinkedIn 消費者シークレット"
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr "ident.ca 消費者キー"
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr "ident.ca 消費者シークレット"
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr "パスワードログインに LDAP 認証を使用する"
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr "LDAP サービスのプロバイダー名"
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr "LDAP サービスの URL"
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr ""
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -880,11 +903,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -940,105 +965,144 @@ msgid "Minimum length of answer body (number of characters)"
msgstr ""
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "タグが必須です"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr ""
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "タグ"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr ""
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr "パスワードログインに LDAP 認証を使用する"
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+#, fuzzy
+msgid "LDAP Server USERID field name"
+msgstr "LDAP サービスのプロバイダー名"
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+#, fuzzy
+msgid "LDAP Server EMAIL field name"
+msgstr "LDAP サービスのプロバイダー名"
+
#: conf/leading_sidebar.py:12
msgid "Common left sidebar"
msgstr ""
@@ -1059,7 +1123,7 @@ msgid ""
msgstr ""
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1306,6 +1370,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1503,27 +1571,27 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "フィードバックサイト URL"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1912,11 +1980,10 @@ msgid "Use automatic avatars from gravatar.com"
msgstr ""
#: conf/user_settings.py:85
-#, python-format
msgid ""
"Check this option if you want to allow the use of gravatar.com for avatars. "
-"Please, note that this feature might take about 10 minutes to become "
-"100% effective. You will have to enable uploaded avatars as well. For more "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
"html#uploaded-avatars\">this page</a>."
msgstr ""
@@ -2074,7 +2141,7 @@ msgstr "注目の質問"
msgid "least voted"
msgstr ""
-#: const/__init__.py:51 const/message_keys.py:23
+#: const/__init__.py:51
msgid "relevance"
msgstr "関連"
@@ -2211,7 +2278,7 @@ msgstr "[閉鎖されました]"
msgid "[deleted]"
msgstr "[削除されました]"
-#: const/__init__.py:211 views/readers.py:565
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "最初のバージョン"
@@ -2299,14 +2366,17 @@ msgstr ""
msgid "click to see most relevant questions"
msgstr ""
+#: const/message_keys.py:23
+msgid "by relevance"
+msgstr ""
+
#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr ""
#: const/message_keys.py:25
-#, fuzzy
-msgid "date"
-msgstr "更新する"
+msgid "by date"
+msgstr "日付"
#: const/message_keys.py:26
msgid "click to see the newest questions"
@@ -2317,11 +2387,8 @@ msgid "click to see the least recently updated questions"
msgstr ""
#: const/message_keys.py:28
-#: skins/default/templates/user_profile/user_recent.html:4
-#: skins/default/templates/user_profile/user_tabs.html:29
-#: skins/default/templates/user_profile/user_tabs.html:31
-msgid "activity"
-msgstr ""
+msgid "by activity"
+msgstr "活動"
#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
@@ -2332,9 +2399,8 @@ msgid "click to see the least answered questions"
msgstr ""
#: const/message_keys.py:31
-#, fuzzy
-msgid "answers"
-msgstr "回答/"
+msgid "by answers"
+msgstr "回答"
#: const/message_keys.py:32
msgid "click to see the most answered questions"
@@ -2345,10 +2411,8 @@ msgid "click to see least voted questions"
msgstr ""
#: const/message_keys.py:34
-#: skins/default/templates/user_profile/user_tabs.html:36
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "投票"
+msgid "by votes"
+msgstr ""
#: const/message_keys.py:35
msgid "click to see most voted questions"
@@ -2361,14 +2425,14 @@ msgid ""
"reach a resolution."
msgstr ""
-#: const/message_keys.py:45 models/__init__.py:787
+#: const/message_keys.py:45 models/__init__.py:788
msgid ""
"Sorry, your account appears to be suspended and you cannot make new posts "
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
msgstr ""
-#: deps/django_authopenid/backends.py:88
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
@@ -2465,7 +2529,7 @@ msgid "%(site)s user name and password"
msgstr ""
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2552,73 +2616,73 @@ msgstr ""
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID %(openid_url)s が無効です"
-#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:412
-#: deps/django_authopenid/views.py:440
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:362
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr "新しいパスワードが保存されました"
-#: deps/django_authopenid/views.py:466
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:568
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:570
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:573
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:575
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:652
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:658
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr ""
-#: deps/django_authopenid/views.py:749
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1060 deps/django_authopenid/views.py:1066
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
"Your email needs to be validated. Please see details <a "
"id='validate_email_alert' href='%(details_url)s'>here</a>."
-#: deps/django_authopenid/views.py:1087
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr ""
-#: deps/django_authopenid/views.py:1159
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2663,7 +2727,7 @@ msgstr "ドキュメント"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:136
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "パスワードを変更する"
@@ -2722,46 +2786,6 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
@@ -2816,74 +2840,74 @@ msgstr[0] ""
msgid "Please log in to use %s"
msgstr ""
-#: models/__init__.py:319
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:323
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:336
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr ""
-#: models/__init__.py:358
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:366
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:389
+#: models/__init__.py:390
msgid "Sorry, you cannot vote for your own posts"
msgstr ""
-#: models/__init__.py:393
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:398
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:408
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ""
-#: models/__init__.py:414
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ""
-#: models/__init__.py:429
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr ""
-#: models/__init__.py:430
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
-#: models/__init__.py:432
+#: models/__init__.py:433
#, python-format
msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2893,56 +2917,56 @@ msgid_plural ""
"minutes from posting"
msgstr[0] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:518
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:522
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:552
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:569
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:584
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:588
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:593
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:600
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:663
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -2951,262 +2975,262 @@ msgid_plural ""
"by other users"
msgstr[0] ""
-#: models/__init__.py:678
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:682
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:686
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:706
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:710
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:714
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:723
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:747
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:753
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:774
+#: models/__init__.py:775
msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-#: models/__init__.py:782
+#: models/__init__.py:783
msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-#: models/__init__.py:793
+#: models/__init__.py:794
#, python-format
msgid ""
"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:814
+#: models/__init__.py:815
#, python-format
msgid ""
"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
"offensive flags per day."
msgstr ""
-#: models/__init__.py:826
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:832
+#: models/__init__.py:833
msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
-#: models/__init__.py:836
+#: models/__init__.py:837
msgid ""
"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
msgstr ""
-#: models/__init__.py:842
+#: models/__init__.py:843
#, python-format
msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgid_plural ""
"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
-#: models/__init__.py:861
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:862
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:886
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:893
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:897
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:901
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:920
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:924
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:928
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:952
+#: models/__init__.py:953
msgid "sorry, but older votes cannot be revoked"
msgstr ""
-#: models/__init__.py:1438 utils/functions.py:78
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr ""
-#: models/__init__.py:1440
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1442
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1444
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] ""
-#: models/__init__.py:1446
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] ""
-#: models/__init__.py:1447
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
-#: models/__init__.py:1449
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1622 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr ""
-#: models/__init__.py:1718
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr ""
-#: models/__init__.py:1720
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1722
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr ""
-#: models/__init__.py:1724
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1726
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "登録ユーザー"
-#: models/__init__.py:1728
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1730
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1839
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr ""
-#: models/__init__.py:1849
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
-#: models/__init__.py:1856
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] ""
-#: models/__init__.py:1863
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] ""
-#: models/__init__.py:1874
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1878
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2354
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr "\"%(title)s\""
-#: models/__init__.py:2491
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2694 views/commands.py:457
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3507,19 +3531,24 @@ msgstr ""
msgid "\" and more"
msgstr ""
-#: models/repute.py:141
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "電子メールを有効にする"
+
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr ""
-#: models/repute.py:152
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:157
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
@@ -3570,17 +3599,17 @@ msgstr "ウイークリー"
msgid "No email"
msgstr "メール無し"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:56
-#: skins/common/templates/authopenid/signin.html:106
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr "サインイン"
@@ -3636,7 +3665,7 @@ msgstr "電子メールを保存する"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:103
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "キャンセル"
@@ -3788,8 +3817,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -3829,9 +3858,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -3865,81 +3894,86 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "ここにサインしてください:"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:101 utils/forms.py:169
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "パスワード"
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:126
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:154
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:155
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:156
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:170
+#: skins/common/templates/authopenid/signin.html:177
#: skins/common/templates/question/answer_controls.html:13
-#: skins/common/templates/question/question_controls.html:10
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "削除する"
-#: skins/common/templates/authopenid/signin.html:172
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:185
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:190
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:192
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:195
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:206
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:208
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
@@ -3984,7 +4018,7 @@ msgstr "OpenID ログインに戻る"
#: skins/common/templates/avatar/add.html:3
msgid "add avatar"
-msgstr ""
+msgstr "アバターを追加する"
#: skins/common/templates/avatar/add.html:5
msgid "Change avatar"
@@ -4050,7 +4084,7 @@ msgid "link"
msgstr "リンク"
#: skins/common/templates/question/answer_controls.html:13
-#: skins/common/templates/question/question_controls.html:10
+#: skins/common/templates/question/question_controls.html:4
msgid "undelete"
msgstr ""
@@ -4060,15 +4094,15 @@ msgid "remove offensive flag"
msgstr "フラグを削除する"
#: skins/common/templates/question/answer_controls.html:21
-#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:16
msgid "remove flag"
msgstr "フラグを削除する"
#: skins/common/templates/question/answer_controls.html:26
#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
#: skins/common/templates/question/question_controls.html:20
-#: skins/common/templates/question/question_controls.html:26
-#: skins/common/templates/question/question_controls.html:33
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
@@ -4077,14 +4111,14 @@ msgstr ""
#: skins/common/templates/question/answer_controls.html:28
#: skins/common/templates/question/answer_controls.html:37
-#: skins/common/templates/question/question_controls.html:28
-#: skins/common/templates/question/question_controls.html:35
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "侮辱的と印を付ける"
#: skins/common/templates/question/answer_controls.html:41
-#: skins/common/templates/question/question_controls.html:42
-#: skins/default/templates/macros.html:307
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
#: skins/default/templates/revisions.html:38
#: skins/default/templates/revisions.html:41
msgid "edit"
@@ -4111,32 +4145,39 @@ msgstr ""
msgid "close date %(closed_at)s"
msgstr ""
-#: skins/common/templates/question/question_controls.html:12
+#: skins/common/templates/question/question_controls.html:6
msgid "reopen"
msgstr "再度開く"
-#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:8
#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "閉鎖する"
-#: skins/common/templates/question/question_controls.html:41
+#: skins/common/templates/question/question_controls.html:35
msgid "retag"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
-msgstr ""
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
+msgstr "国フィールドが必要です"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "タグ"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(必須)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "リアルタイムMarkdown編集プレビューをトグルする"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
@@ -4795,25 +4836,42 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr ""
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr ""
#: skins/default/templates/macros.html:16
-#: skins/default/templates/macros.html:432
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
#: skins/default/templates/macros.html:19
-#: skins/default/templates/macros.html:435
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
#: skins/default/templates/macros.html:20
-#: skins/default/templates/macros.html:436
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
@@ -4853,79 +4911,79 @@ msgstr "投稿日"
msgid "updated"
msgstr "更新日"
-#: skins/default/templates/macros.html:198
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr ""
-#: skins/default/templates/macros.html:300
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "このコメントを削除する"
-#: skins/default/templates/macros.html:503 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr ""
-#: skins/default/templates/macros.html:512
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr "%(username)s のウェブサイトは %(url)s です"
-#: skins/default/templates/macros.html:527
-#: skins/default/templates/macros.html:528
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "以前の"
-#: skins/default/templates/macros.html:539
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "現在のページ"
-#: skins/default/templates/macros.html:541
-#: skins/default/templates/macros.html:548
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
#, fuzzy, python-format
msgid "page %(num)s"
msgstr "ページ %(num)s"
-#: skins/default/templates/macros.html:552
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "次のページ"
-#: skins/default/templates/macros.html:603
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr ""
-#: skins/default/templates/macros.html:606
+#: skins/default/templates/macros.html:610
#, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
-#: skins/default/templates/macros.html:609
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:624
-#: skins/default/templates/macros.html:625
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:627
-#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:633
-#: skins/default/templates/macros.html:634
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -4934,20 +4992,36 @@ msgstr ""
msgid "Questions"
msgstr "質問"
-#: skins/default/templates/question.html:98
+#: skins/default/templates/question.html:110
msgid "post a comment / <strong>some</strong> more"
msgstr ""
-#: skins/default/templates/question.html:101
+#: skins/default/templates/question.html:113
msgid "see <strong>some</strong> more"
msgstr ""
-#: skins/default/templates/question.html:105
+#: skins/default/templates/question.html:117
#: skins/default/templates/question/javascript.html:20
#, fuzzy
msgid "post a comment"
msgstr "post a comment"
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "あなた自身の質問に回答する"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "良い回答"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "投稿するためにログイン/サインアップする"
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
msgid "Edit question"
@@ -4985,7 +5059,7 @@ msgstr "再開された質問"
#: skins/default/templates/reopen.html:6
msgid "Title"
-msgstr ""
+msgstr "表題"
#: skins/default/templates/reopen.html:11
#, python-format
@@ -5010,6 +5084,13 @@ msgstr "この質問を再び開きますか?"
msgid "Reopen this question"
msgstr "この質問を再開する"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5049,7 +5130,7 @@ msgstr "タグリスト"
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
-msgstr ""
+msgstr "&raquo; により並び替える"
#: skins/default/templates/tags.html:19
msgid "sorted alphabetically"
@@ -5223,19 +5304,19 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5272,11 +5353,6 @@ msgstr "最新の回答が最初に表示されます"
msgid "most voted answers will be shown first"
msgstr "もっとも投票された回答が最初に表示されます"
-#: skins/default/templates/question/content.html:40
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer Your Own Question"
-msgstr "あなた自身の質問に回答する"
-
#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr ""
@@ -5318,17 +5394,6 @@ msgid ""
"best questions and answers!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:45
-#: skins/default/templates/widgets/ask_form.html:41
-#, fuzzy
-msgid "Login/Signup to Post"
-msgstr "投稿するためにログイン/サインアップする"
-
-#: skins/default/templates/question/new_answer_form.html:50
-#, fuzzy
-msgid "Post Your Answer"
-msgstr "良い回答"
-
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
msgid ""
@@ -5344,77 +5409,77 @@ msgstr ""
msgid "email"
msgstr "メールアドレス"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr ""
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr ""
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr ""
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr ""
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr ""
-#: skins/default/templates/question/sidebar.html:44
+#: skins/default/templates/question/sidebar.html:46
msgid "Stats"
msgstr ""
-#: skins/default/templates/question/sidebar.html:46
+#: skins/default/templates/question/sidebar.html:48
#, fuzzy
msgid "Asked"
msgstr "質問日"
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "Seen"
msgstr ""
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "回"
-#: skins/default/templates/question/sidebar.html:52
+#: skins/default/templates/question/sidebar.html:54
#, fuzzy
msgid "Last updated"
msgstr "最終更新日"
-#: skins/default/templates/question/sidebar.html:60
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "関係した質問"
@@ -5452,12 +5517,12 @@ msgstr "プロファイルを編集する"
#: skins/default/templates/user_profile/user_edit.html:21
#: skins/default/templates/user_profile/user_info.html:15
msgid "change picture"
-msgstr ""
+msgstr "写真を変更する"
#: skins/default/templates/user_profile/user_edit.html:25
#: skins/default/templates/user_profile/user_info.html:19
msgid "remove"
-msgstr ""
+msgstr "削除する"
#: skins/default/templates/user_profile/user_edit.html:32
msgid "Registered user"
@@ -5467,11 +5532,11 @@ msgstr "登録ユーザー"
msgid "Screen Name"
msgstr "スクリーン名"
-#: skins/default/templates/user_profile/user_edit.html:60
+#: skins/default/templates/user_profile/user_edit.html:59
msgid "(cannot be changed)"
-msgstr ""
+msgstr "(変更できません)"
-#: skins/default/templates/user_profile/user_edit.html:102
+#: skins/default/templates/user_profile/user_edit.html:101
#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "更新する"
@@ -5479,7 +5544,7 @@ msgstr "更新する"
#: skins/default/templates/user_profile/user_email_subscriptions.html:4
#: skins/default/templates/user_profile/user_tabs.html:42
msgid "subscriptions"
-msgstr ""
+msgstr "購読"
#: skins/default/templates/user_profile/user_email_subscriptions.html:7
msgid "Email subscription settings"
@@ -5698,19 +5763,19 @@ msgstr ""
#: skins/default/templates/user_profile/user_network.html:5
#: skins/default/templates/user_profile/user_tabs.html:18
msgid "network"
-msgstr ""
+msgstr "ネットワーク"
#: skins/default/templates/user_profile/user_network.html:10
#, python-format
msgid "Followed by %(count)s person"
msgid_plural "Followed by %(count)s people"
-msgstr[0] ""
+msgstr[0] "%(count)s 人にフォローされています"
#: skins/default/templates/user_profile/user_network.html:14
#, python-format
msgid "Following %(count)s person"
msgid_plural "Following %(count)s people"
-msgstr[0] ""
+msgstr[0] "%(count)s 人をフォローしています"
#: skins/default/templates/user_profile/user_network.html:19
msgid ""
@@ -5723,6 +5788,12 @@ msgstr ""
msgid "%(username)s's network is empty"
msgstr ""
+#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
+#: skins/default/templates/user_profile/user_tabs.html:31
+msgid "activity"
+msgstr ""
+
#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
@@ -5806,7 +5877,7 @@ msgstr ""
msgid "User profile"
msgstr "ユーザープロファイル"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:630
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr ""
@@ -5823,11 +5894,16 @@ msgstr "Graph of user karma"
msgid "questions that user is following"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:671
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:761
+#: skins/default/templates/user_profile/user_tabs.html:36
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "投票"
+
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr ""
@@ -6165,6 +6241,37 @@ msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] "%(min)d 分前"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6216,21 +6323,21 @@ msgstr ""
msgid "email update frequency has been set to daily"
msgstr "メール更新頻度が日刊に設定されました。"
-#: views/commands.py:461
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:470
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:596
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr ""
-#: views/commands.py:616
+#: views/commands.py:620
#, fuzzy
msgid "Please sign in to delete/restore posts"
msgstr "ここにサインしてください:"
@@ -6240,19 +6347,19 @@ msgstr "ここにサインしてください:"
msgid "About %(site)s"
msgstr "%(site)s について"
-#: views/meta.py:86
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "QAフォーラムフィードバック"
-#: views/meta.py:87
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "ご意見ありがとうございます!"
-#: views/meta.py:96
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/meta.py:100
+#: views/meta.py:106
msgid "Privacy policy"
msgstr "プライバシーポリシー"
@@ -6262,7 +6369,7 @@ msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] ""
-#: views/readers.py:387
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
@@ -6272,57 +6379,57 @@ msgstr ""
msgid "moderate user"
msgstr ""
-#: views/users.py:373
+#: views/users.py:381
msgid "user profile"
msgstr "ユーザプロファイル"
-#: views/users.py:374
+#: views/users.py:382
msgid "user profile overview"
msgstr "ユーザプロファイル概略"
-#: views/users.py:543
+#: views/users.py:551
msgid "recent user activity"
msgstr "最近のユーザの活動"
-#: views/users.py:544
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "プロファイル:最近の活動"
-#: views/users.py:631
+#: views/users.py:639
msgid "profile - responses"
msgstr "プロファイル:応答"
-#: views/users.py:672
+#: views/users.py:680
msgid "profile - votes"
msgstr "プロファイル:投票"
-#: views/users.py:693
+#: views/users.py:701
#, fuzzy
msgid "user karma"
msgstr "カルマ"
-#: views/users.py:694
+#: views/users.py:702
#, fuzzy
msgid "Profile - User's Karma"
msgstr "プロファイル:徳"
-#: views/users.py:712
+#: views/users.py:720
msgid "users favorite questions"
msgstr "ユーザのお気に入りの質問"
-#: views/users.py:713
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "プロファイル:お気に入りの質問"
-#: views/users.py:733 views/users.py:737
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "変更が保存されました"
-#: views/users.py:743
+#: views/users.py:751
msgid "email updates canceled"
msgstr "メール更新がキャンセルされました"
-#: views/users.py:762
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "プロファイル:メール登録など"
@@ -6330,21 +6437,21 @@ msgstr "プロファイル:メール登録など"
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
-#: views/writers.py:70
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr ""
-#: views/writers.py:90
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
-#: views/writers.py:98
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:205
+#: views/writers.py:189
msgid ""
"<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 "
@@ -6353,32 +6460,35 @@ msgid ""
"Login takes about 30 seconds, initial signup takes a minute or less."
msgstr ""
-#: views/writers.py:482
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr ""
-#: views/writers.py:588
+#: views/writers.py:572
#, 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:605
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
-#: views/writers.py:635
+#: views/writers.py:619
#, 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:656
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
+#~ msgid "URL for the LDAP service"
+#~ msgstr "LDAP サービスの URL"
+
#~ msgid "question_answered"
#~ msgstr "回答"
@@ -6391,15 +6501,6 @@ msgstr ""
#~ msgid "answer_accepted"
#~ msgstr "納得された回答"
-#~ msgid "by date"
-#~ msgstr "日付"
-
-#~ msgid "by activity"
-#~ msgstr "活動"
-
-#~ msgid "by answers"
-#~ msgstr "回答"
-
#~ msgid "Incorrect username."
#~ msgstr "sorry, there is no such user name"
diff --git a/askbot/locale/ja/LC_MESSAGES/djangojs.po b/askbot/locale/ja/LC_MESSAGES/djangojs.po
index ea88a6c7..88cb4dd0 100644
--- a/askbot/locale/ja/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/ja/LC_MESSAGES/djangojs.po
@@ -1,25 +1,26 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Tomoyuki KATO <tomo@dream.daynight.jp>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
-"Report-Msgid-Bugs-To: http://askbot.org/\n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-04-18 18:49-0500\n"
"PO-Revision-Date: 2012-02-02 13:32+0000\n"
"Last-Translator: Tomoyuki KATO <tomo@dream.daynight.jp>\n"
-"Language-Team: Japanese (http://www.transifex.net/projects/p/askbot/language/ja/)\n"
+"Language-Team: Japanese (http://www.transifex.net/projects/p/askbot/language/"
+"ja/)\n"
+"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr "本当に %s のログインを削除したいですか?"
@@ -31,44 +32,46 @@ msgstr "1つ以上のログイン方法を追加してください。"
msgid ""
"You don't have a method to log in right now, please add one or more by "
"clicking any of the icons below."
-msgstr "今すぐにログインする方法がありません、以下のアイコンのどれかをクリックして1つ以上を追加してください。"
+msgstr ""
+"今すぐにログインする方法がありません、以下のアイコンのどれかをクリックして1つ"
+"以上を追加してください。"
#: skins/common/media/jquery-openid/jquery.openid.js:135
msgid "passwords do not match"
msgstr "パスワードが一致しません"
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr "現在のログイン方法の表示・変更"
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr "%s を入力して、進んでください"
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr "%(provider_name)s アカウントを %(site)s に接続します"
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr "%s のパスワードを変更します"
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr "パスワードを変更します"
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr "%s のパスワードを作成します"
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr "パスワードを作成します"
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr "パスワード保護されたアカウントを作成します"
@@ -76,145 +79,81 @@ msgstr "パスワード保護されたアカウントを作成します"
msgid "loading..."
msgstr "読み込み中..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "最低1つのタグを入力してください"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "内容が空白ではいけません"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "%s 文字以上を入力してください"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "見出しを入力してください"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "最低 %s 文字を入力してください"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "不十分な権限"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "申し訳ありませんが、あなたの回答を受領できません"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "ログインしてください"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr "匿名ユーザーは質問をフォローできません"
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr "匿名ユーザーは質問を購読できません"
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "申し訳ありませんが、匿名ユーザーは投票できません "
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
-msgstr "あなたはこの投稿が攻撃的、スパム、広告、悪意のある意見などであると思いますか?"
+msgstr ""
+"あなたはこの投稿が攻撃的、スパム、広告、悪意のある意見などであると思います"
+"か?"
+
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr ""
+"あなたはこの投稿が攻撃的、スパム、広告、悪意のある意見などであると思います"
+"か?"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "匿名ユーザーが攻撃的な投稿のフラグをつけられません"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "本当にこれを削除したいですか?"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "申し訳ありませんが、匿名ユーザーは投稿を削除または復旧できません"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "これで投稿が復元されました!"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "投稿が削除されました"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "フォロー"
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] "%s フォロワー"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>フォロー中</div><div class=\"unfollow\">フォロー解除</div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "復旧"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "削除"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "コメントの追加"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "コメントの保存"
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "最低 %s 文字以上を入力してください"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "残り %s 文字"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr "キャンセル"
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "本当にこのコメントを投稿したいですか?"
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "このコメントを削除する"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "本当にこのコメントを削除したいですか?"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "質問の見出しを入力してください(>10文字)"
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "タグ \"<span></span>\" が一致します:"
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "さらに %s 個、表示されていません..."
@@ -227,114 +166,175 @@ msgid "Delete this notification?"
msgid_plural "Delete these notifications?"
msgstr[0] "この通知を削除しますか?"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "このコメントを削除する"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "このコメントを削除する"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
-msgstr "%(username)s をフォローするには<a href=\"%(signin_url)s\">サインイン</a>してください"
+msgstr ""
+"%(username)s をフォローするには<a href=\"%(signin_url)s\">サインイン</a>して"
+"ください"
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "%s のフォロー解除"
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "%s のフォロー中"
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "%s のフォロー"
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "閉じるにはクリックしてください"
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "このコメントを編集するにはクリックしてください"
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "編集"
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr "'%s' というタグの付いた質問を参照する"
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "太字"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "斜体"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "リンク"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "引用"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "整形済みテキスト"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "画像"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr "添付"
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "番号付きリスト"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "箇条書きリスト"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "見出し"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "水平線"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "やり直し"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "再実行"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
-msgstr "画像のURL(例、http://www.example.com/image.jpg)を入力してください、または画像ファイルをアップロードしてください"
+msgstr ""
+"画像のURL(例、http://www.example.com/image.jpg)を入力してください、または画"
+"像ファイルをアップロードしてください"
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
-msgstr "ウェブアドレス(例、http://www.example.com \"page title\")を入力してください"
+msgstr ""
+"ウェブアドレス(例、http://www.example.com \"page title\")を入力してください"
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "ファイルを選択してアップロードしてください:"
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr "画像の説明"
+#~ msgid "tags cannot be empty"
+#~ msgstr "最低1つのタグを入力してください"
+
+#~ msgid "content cannot be empty"
+#~ msgstr "内容が空白ではいけません"
+
+#~ msgid "%s content minchars"
+#~ msgstr "%s 文字以上を入力してください"
+
+#~ msgid "please enter title"
+#~ msgstr "見出しを入力してください"
+
+#~ msgid "%s title minchars"
+#~ msgstr "最低 %s 文字を入力してください"
+
+#~ msgid "Follow"
+#~ msgstr "フォロー"
+
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] "%s フォロワー"
+
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr "<div>フォロー中</div><div class=\"unfollow\">フォロー解除</div>"
+
+#~ msgid "undelete"
+#~ msgstr "復旧"
+
+#~ msgid "delete"
+#~ msgstr "削除"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "最低 %s 文字以上を入力してください"
+
+#~ msgid "%s characters left"
+#~ msgstr "残り %s 文字"
+
+#~ msgid "cancel"
+#~ msgstr "キャンセル"
+
+#~ msgid "confirm abandon comment"
+#~ msgstr "本当にこのコメントを投稿したいですか?"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "本当にこのコメントを削除したいですか?"
+
+#~ msgid "click to edit this comment"
+#~ msgstr "このコメントを編集するにはクリックしてください"
+
+#~ msgid "edit"
+#~ msgstr "編集"
+
+#~ msgid "see questions tagged '%s'"
+#~ msgstr "'%s' というタグの付いた質問を参照する"
+
+#~ msgid "image description"
+#~ msgstr "画像の説明"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr "ファイル名"
+#~ msgid "file name"
+#~ msgstr "ファイル名"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr "リンクテキスト"
+#~ msgid "link text"
+#~ msgstr "リンクテキスト"
diff --git a/askbot/locale/ko/LC_MESSAGES/django.po b/askbot/locale/ko/LC_MESSAGES/django.po
index 6a3eb78a..bd9e27dc 100644
--- a/askbot/locale/ko/LC_MESSAGES/django.po
+++ b/askbot/locale/ko/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:51-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Evgeny Fadeev <evgeny.fadeev@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21,15 +21,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr ""
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr ""
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr ""
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr ""
@@ -56,23 +56,32 @@ msgstr ""
msgid "please enter a descriptive title for your question"
msgstr ""
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] ""
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr ""
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr ""
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -82,356 +91,377 @@ msgid_plural ""
"be used."
msgstr[0] ""
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr ""
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] ""
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:227
+#: forms.py:249
#, 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] ""
-#: forms.py:235
-msgid "use-these-chars-in-tags"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
msgstr ""
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr ""
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
msgstr ""
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr ""
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr ""
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr ""
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr ""
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr ""
-#: forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr ""
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr ""
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr ""
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr ""
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr ""
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr ""
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr ""
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr ""
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr ""
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr ""
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr ""
-#: forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr ""
-#: forms.py:580
+#: forms.py:531
#, fuzzy
msgid "Email:"
msgstr ""
"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr ""
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr ""
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr ""
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr ""
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr ""
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr ""
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr ""
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr ""
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr ""
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr ""
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr ""
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr ""
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr ""
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr ""
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr ""
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr ""
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr ""
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr ""
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr ""
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "no askbot email please, thanks"
-#: forms.py:1157
-msgid "please choose one of the options above"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
msgstr ""
-#: urls.py:52
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
+#: urls.py:41
msgid "about/"
msgstr ""
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr ""
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr ""
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr ""
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr ""
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr ""
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+#, fuzzy
+msgid "questions"
+msgstr "Tips"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr ""
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr ""
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr ""
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr ""
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr ""
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr ""
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr ""
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr ""
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr ""
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr ""
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr ""
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr ""
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr ""
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr ""
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr ""
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr ""
@@ -560,132 +590,136 @@ msgid ""
msgstr ""
#: conf/email.py:38
+msgid "Enable email alerts"
+msgstr ""
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr ""
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr ""
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr ""
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr ""
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr ""
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr ""
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr ""
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
#, fuzzy
msgid "Allow posting questions by email"
msgstr ""
@@ -695,22 +729,46 @@ msgstr ""
"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."
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+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."
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -741,15 +799,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -757,11 +815,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -769,70 +827,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr ""
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -871,11 +913,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -932,108 +976,164 @@ msgid "Minimum length of answer body (number of characters)"
msgstr ""
#: conf/forum_data_rules.py:126
+msgid "Are tags required?"
+msgstr ""
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr ""
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
#, fuzzy
msgid "Use wildcard tags"
msgstr "Tags"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr ""
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Tags"
+
+#: conf/leading_sidebar.py:20
+msgid "Enable left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1107,16 +1207,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1281,6 +1381,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1479,27 +1583,27 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr ""
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1624,21 +1728,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1646,40 +1750,40 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr ""
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1691,11 +1795,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1704,21 +1808,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1727,21 +1831,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1750,19 +1854,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1773,19 +1877,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1850,39 +1954,66 @@ msgstr ""
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
#, fuzzy
msgid "User settings"
msgstr "User login"
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "Your email <i>(never shared)</i>"
+
+#: conf/user_settings.py:41
msgid "Allow account recovery by email"
msgstr ""
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+msgid "Default avatar for users"
+msgstr ""
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -1993,276 +2124,275 @@ msgstr ""
msgid "too localized"
msgstr ""
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr ""
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr ""
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr ""
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr ""
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr ""
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr ""
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr ""
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr ""
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr ""
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr ""
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr ""
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr ""
-#: const/__init__.py:64
+#: const/__init__.py:70
#, fuzzy
msgid "list"
msgstr "Tags"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr ""
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr ""
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr ""
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr ""
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr ""
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr ""
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr ""
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr ""
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "received badge"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr ""
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr ""
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr ""
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr ""
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr ""
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr ""
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr ""
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr ""
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr ""
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr ""
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr ""
-#: const/__init__.py:142
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr ""
-#: const/__init__.py:146
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr ""
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr ""
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "answered question"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "commented question"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr ""
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr ""
+#, fuzzy
+msgid "answered question"
+msgstr "Post Your Answer"
+
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "oldest"
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr ""
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr ""
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr ""
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr ""
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr ""
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr ""
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr ""
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr ""
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr ""
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr ""
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr ""
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr ""
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
#, fuzzy
msgid "wavatar"
msgstr "How to change my picture (gravatar) and what is gravatar?"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr ""
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr ""
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr ""
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr ""
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr ""
-#: const/message_keys.py:15
+#: const/message_keys.py:21
#, fuzzy
msgid "most relevant questions"
msgstr "ask a question interesting to this community"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
#, fuzzy
msgid "click to see most relevant questions"
msgstr "ask a question interesting to this community"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr ""
-#: const/message_keys.py:18
+#: const/message_keys.py:24
#, fuzzy
msgid "click to see the oldest questions"
msgstr ""
@@ -2272,49 +2402,49 @@ msgstr ""
"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."
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr ""
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr ""
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr ""
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr ""
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr ""
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr ""
-#: const/message_keys.py:25
+#: const/message_keys.py:31
#, fuzzy
msgid "by answers"
msgstr "oldest"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr ""
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr ""
-#: const/message_keys.py:28
+#: const/message_keys.py:34
#, fuzzy
msgid "by votes"
msgstr "votes"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
#, fuzzy
msgid "click to see most voted questions"
msgstr ""
@@ -2324,13 +2454,27 @@ msgstr ""
"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."
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr ""
@@ -2379,11 +2523,11 @@ msgid "Your user name (<i>required</i>)"
msgstr ""
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "sorry, there is no such user name"
+msgid "sorry, there is no such user name"
+msgstr ""
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr ""
@@ -2421,7 +2565,7 @@ msgid "%(site)s user name and password"
msgstr ""
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2503,78 +2647,78 @@ msgstr ""
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr ""
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr ""
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
"Your email needs to be validated. Please see details <a "
"id='validate_email_alert' href='%(details_url)s'>here</a>."
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr ""
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2582,28 +2726,28 @@ msgstr ""
msgid "Site"
msgstr ""
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr ""
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr ""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr ""
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr ""
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr ""
@@ -2620,7 +2764,7 @@ msgstr "karma"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
#, fuzzy
msgid "Change password"
msgstr "Password"
@@ -2682,52 +2826,12 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
#, fuzzy
msgid "Please accept the best answer for this question:"
msgstr ""
@@ -2738,7 +2842,7 @@ msgstr ""
"please <strong>don't forget to vote</strong> - it really helps to select the "
"best questions and answers!"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
#, fuzzy
msgid "Please accept the best answer for these questions:"
msgstr ""
@@ -2749,64 +2853,37 @@ msgstr ""
"please <strong>don't forget to vote</strong> - it really helps to select the "
"best questions and answers!"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
-"<p>Dear %(name)s,</p></p>The following %(num)d question has been updated on "
-"the Q&A forum:</p>"
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr ""
-#: 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 ""
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-"<p>Please remember that you can always <a "
-"href='%(email_settings_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 %(admin_email)s.</"
-"p><p>Sincerely,</p><p>Your friendly Q&A forum server.</p>"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2822,89 +2899,75 @@ msgstr ""
"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."
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr ""
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "Sorry, you cannot vote for your own posts"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ">%(points)s points required to upvote "
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ">%(points)s points required to downvote "
-#: models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr ""
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "sorry, file uploading requires karma >%(min_rep)s"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
-
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2914,56 +2977,56 @@ msgid_plural ""
"minutes from posting"
msgstr[0] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:510
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -2972,275 +3035,264 @@ msgid_plural ""
"by other users"
msgstr[0] ""
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "You have flagged this question before and cannot do it more than once"
-
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-"Sorry, since your account is blocked you cannot flag posts as offensive"
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
+#: models/__init__.py:783
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:768
+#: models/__init__.py:794
#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr ""
+msgid ""
"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
"required"
+msgstr ""
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr ""
+msgid ""
"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
"offensive flags per day."
+msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
+msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
"Sorry, since your account is blocked you cannot flag posts as offensive"
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
-msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
-#, fuzzy, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+#: models/__init__.py:843
+#, python-format
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
-"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
-"required"
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "sorry, but older votes cannot be revoked"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr ""
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] ""
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] ""
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr ""
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr ""
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr ""
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr ""
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr ""
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] ""
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] ""
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr ""
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3498,154 +3550,136 @@ msgstr ""
msgid "Created a tag used by %(num)s questions"
msgstr ""
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr ""
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr ""
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr ""
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr ""
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr ""
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr ""
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr ""
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr ""
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr ""
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr ""
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr ""
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "How to validate email and why?"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr ""
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr ""
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr ""
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr ""
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr ""
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr ""
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr ""
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr ""
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr ""
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr ""
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr ""
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Change Email"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3655,41 +3689,39 @@ msgstr "Your email <i>(never shared)</i>"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
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/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
+msgid ""
"<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 "
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
"else."
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
msgstr ""
-"<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
-"anyone, must be valid)"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
#, fuzzy
msgid "Save Email"
msgstr "Change Email"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3697,174 +3729,115 @@ msgstr "Change Email"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
#, fuzzy
msgid "Validate email"
msgstr "How to validate email and why?"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
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/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
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/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, 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 "
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:69
-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 "
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
"updates</strong> - then will be notified about changes <strong>once a day</"
-"strong> or less frequently."
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "Validation email not sent"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "How to validate email and why?"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, 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 "
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
"necessary."
+msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "karma"
-#: skins/common/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/common/templates/authopenid/complete.html:30
-#, 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/common/templates/authopenid/complete.html:34
-#, 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/common/templates/authopenid/complete.html:37
-#, 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/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr ""
-"<strong>Email Address</strong> (<i>will <strong>not</strong> be shared with "
-"anyone, must be valid</i>)"
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "karma"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
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/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "Signup"
-
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
msgstr ""
@@ -3898,7 +3871,7 @@ msgstr ""
#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
@@ -3917,8 +3890,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -3965,9 +3938,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -4001,128 +3974,100 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+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."
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
#, fuzzy
msgid "Password"
msgstr "Password"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Sign in"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "Password"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "Last updated"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
#, fuzzy
msgid "delete"
msgstr "How to change my picture (gravatar) and what is gravatar?"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "sorry, but older votes cannot be revoked"
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "Post Your Answer"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr "With the OpenID you don't need to create new username and password."
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr "You can safely re-use the same login for all OpenID-enabled websites."
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-"
-"enabled."
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr "OpenID is based on an open standard, supported by many organizations."
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr ""
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr ""
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
msgstr ""
@@ -4136,30 +4081,29 @@ msgid "Create login name and password"
msgstr ""
#: skins/common/templates/authopenid/signup_with_password.html:26
-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 "
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:47
-#, fuzzy
-msgid "Create Account"
-msgstr "Signup"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr ""
@@ -4220,69 +4164,70 @@ msgstr ""
msgid "Delete These"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "permanent link"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "Post Your Answer"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "link"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr ""
+
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
#, fuzzy
-msgid "edit"
-msgstr "Change Email"
+msgid "undelete"
+msgstr "How to change my picture (gravatar) and what is gravatar?"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "remove all flags"
+msgid "remove offensive flag"
msgstr "Tags"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+#, fuzzy
+msgid "remove flag"
+msgstr "Tags"
+
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-#, fuzzy
-msgid "remove flag"
-msgstr "Tags"
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
#, fuzzy
-msgid "undelete"
-msgstr "How to change my picture (gravatar) and what is gravatar?"
-
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Post Your Answer"
+msgid "edit"
+msgstr "Change Email"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
-msgid "mark this answer as correct (click again to undo)"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
msgstr ""
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
+#: skins/common/templates/question/answer_vote_buttons.html:8
+msgid "mark this answer as correct (click again to undo)"
msgstr ""
#: skins/common/templates/question/closed_question_info.html:2
@@ -4298,61 +4243,69 @@ msgid "close date %(closed_at)s"
msgstr ""
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr ""
-
-#: skins/common/templates/question/question_controls.html:13
#, fuzzy
msgid "reopen"
msgstr "You can safely re-use the same login for all OpenID-enabled websites."
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr ""
+
+#: skins/common/templates/widgets/edit_post.html:22
+msgid ", one of these is required"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "Tags"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr ""
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Tags"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
#, fuzzy
msgid "Interesting tags"
msgstr "Tags"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
msgid "add"
msgstr ""
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
#, fuzzy
msgid "Ignored tags"
msgstr "Retag question"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr ""
@@ -4402,7 +4355,7 @@ msgid "back to previous page"
msgstr ""
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
#, fuzzy
msgid "see all questions"
msgstr "Ask Your Question"
@@ -4435,11 +4388,6 @@ msgstr "Post Your Answer"
msgid "see tags"
msgstr "Tags"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
#, fuzzy
@@ -4471,18 +4419,20 @@ msgstr "Change Email"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr ""
#: skins/default/templates/ask.html:4
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
#, fuzzy
-msgid "Ask a question"
+msgid "Ask Your Question"
msgstr "Ask Your Question"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr ""
@@ -4498,8 +4448,8 @@ msgid "Badge \"%(name)s\""
msgstr ""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, fuzzy, python-format
msgid "%(description)s"
msgstr ""
@@ -4514,11 +4464,7 @@ msgid "user received this badge:"
msgid_plural "users received this badge:"
msgstr[0] ""
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Badges"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
#, fuzzy
msgid "Badges"
msgstr "Badges"
@@ -4531,45 +4477,44 @@ msgstr ""
#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"Below is the list of available badges and number \n"
" of times each type of badge has been awarded. Have ideas about fun "
"badges? Please, give us your <a href='%(feedback_faq_url)s'>feedback</a>"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Badge levels"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr ""
-"Gold badge is the highest award in this community. To obtain it have to show "
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr ""
-"silver badge: occasionally awarded for the very high quality contributions"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr ""
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "bronze badge: often given as a special honor"
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
#, fuzzy
msgid "Close question"
@@ -4588,11 +4533,10 @@ msgstr ""
msgid "OK to close"
msgstr ""
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4612,15 +4556,17 @@ msgid ""
msgstr ""
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Before you ask - please make sure to search for a similar question. You can "
"search questions by their title or tags."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "What kinds of questions should be avoided?"
#: skins/default/templates/faq_static.html:11
@@ -4636,14 +4582,11 @@ msgstr "What kinds of questions should be avoided?"
#: skins/default/templates/faq_static.html:14
msgid ""
-"is a Q&A site, not a discussion group. Therefore - please avoid having "
-"discussions in your answers, comment facility allows some space for brief "
-"discussions."
-msgstr ""
"is a <strong>question and answer</strong> site - <strong>it is not a "
"discussion group</strong>. Please avoid holding debates in your answers as "
"they tend to dilute the essense of questions and answers. For the brief "
"discussions please use commenting facility."
+msgstr ""
#: skins/default/templates/faq_static.html:15
#, fuzzy
@@ -4659,24 +4602,26 @@ msgid "This website is moderated by the users."
msgstr ""
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"Karma system allows users to earn rights to perform a variety of moderation "
"tasks"
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "How does karma system work?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr ""
+msgid ""
"When a question or answer is upvoted, the user who posted them will gain "
-"some points, which are called \"karma points\". These points serve as a "
+"some points, which are called \\\"karma points\\\". These points serve as a "
"rough measure of the community trust to him/her. Various moderation tasks "
"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -4697,23 +4642,18 @@ msgstr ""
msgid "upvote"
msgstr "votes"
-#: skins/default/templates/faq_static.html:37
-#, fuzzy
-msgid "use tags"
-msgstr "Tags"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
#, fuzzy
msgid "add comments"
msgstr "post a comment"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
#, fuzzy
msgid "downvote"
msgstr "votes"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr ""
@@ -4724,38 +4664,37 @@ msgstr ""
"please <strong>don't forget to vote</strong> - it really helps to select the "
"best questions and answers!"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
#, fuzzy
msgid "open and close own questions"
msgstr "Post Your Answer"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
#, fuzzy
msgid "retag other's questions"
msgstr "Post Your Answer"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
#, fuzzy
msgid "edit community wiki questions"
msgstr "ask a question interesting to this community"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "oldest"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "\"delete any comment"
+msgid "delete any comment"
msgstr "post a comment"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "How to change my picture (gravatar) and what is gravatar?"
-
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
msgstr ""
+
+#: skins/default/templates/faq_static.html:70
+msgid ""
"<p>The picture that appears on the users profiles is called "
"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
@@ -4769,51 +4708,52 @@ msgstr ""
"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
"be sure to use the same email address that you used to register with us). "
"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr ""
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
msgstr ""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
#, fuzzy
msgid "\"Login now!\""
msgstr "Logout Now"
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
#, fuzzy
msgid "Still have questions?"
msgstr "Post Your Answer"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Please <a href='%(ask_question_url)s'>ask</a> your question, help make our "
"community better!"
@@ -4869,6 +4809,68 @@ msgid ""
"Hello, this is a %(site_title)s forum feedback message.\n"
msgstr ""
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "Choose screen name"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -4970,175 +4972,158 @@ msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr ""
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-msgid "i like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr ""
-#: skins/default/templates/macros.html:43
-msgid "i dont like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr "Sorry, anonymous users cannot vote"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr ""
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
#, fuzzy
msgid "answered"
msgstr "oldest"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr ""
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
#, fuzzy
msgid "updated"
msgstr "Last updated"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, fuzzy, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "Asked"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
#, fuzzy
msgid "delete this comment"
msgstr "post a comment"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "post a comment"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] ""
-
-#: skins/default/templates/macros.html:310
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] ""
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr ""
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "User login"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr ""
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr ""
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "page %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr ""
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr ""
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, fuzzy, python-format
msgid "responses for %(username)s"
msgstr "Choose screen name"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -5148,11 +5133,37 @@ msgstr ""
msgid "Questions"
msgstr "Tags"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
+#: skins/default/templates/question.html:110
+msgid "post a comment / <strong>some</strong> more"
msgstr ""
+#: skins/default/templates/question.html:113
+msgid "see <strong>some</strong> more"
+msgstr ""
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "post a comment"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+#, fuzzy
+msgid "Answer Your Own Question"
+msgstr "Post Your Answer"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "most voted"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Login/Signup to Post"
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
#, fuzzy
@@ -5161,8 +5172,9 @@ msgstr "Post Your Answer"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Retag question"
+#, fuzzy
+msgid "Retag question"
+msgstr "ask a question interesting to this community"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -5219,6 +5231,13 @@ msgstr "Post Your Answer"
msgid "Reopen this question"
msgstr "Post Your Answer"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
#, fuzzy
@@ -5255,17 +5274,17 @@ msgstr ""
msgid "Subscribe"
msgstr "Tags"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Tags"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Tags"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
msgstr ""
@@ -5285,7 +5304,7 @@ msgstr ""
msgid "by popularity"
msgstr ""
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr ""
@@ -5299,8 +5318,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "karma"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5332,7 +5353,7 @@ msgstr ""
msgid "Nothing found."
msgstr ""
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5347,43 +5368,43 @@ msgstr ""
msgid "Tagged"
msgstr ""
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
#, fuzzy
msgid "Search tips:"
msgstr "Tips"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
#, fuzzy
msgid "reset author"
msgstr "Tags"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
msgid " or "
msgstr ""
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
#, fuzzy
msgid "reset tags"
msgstr "Tags"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr ""
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
#, fuzzy
msgid "Search tip:"
msgstr "Tips"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr ""
@@ -5437,21 +5458,21 @@ msgstr ""
"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."
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr ""
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
#, fuzzy
msgid "Please, post your question!"
msgstr "Ask Your Question"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
#, fuzzy
msgid "subscribe to the questions feed"
msgstr "Post Your Answer"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5463,19 +5484,19 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5485,55 +5506,41 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
+#: skins/default/templates/question/answer_tab_bar.html:11
+msgid "Sort by »"
+msgstr ""
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "oldest"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "newest"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "most voted"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-#, fuzzy
-msgid "Answer Your Own Question"
-msgstr "Post Your Answer"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "Login/Signup to Post"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
#, fuzzy
msgid "Your answer"
msgstr "most voted"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
#, fuzzy
msgid "Be the first one to answer this question!"
msgstr ""
@@ -5544,42 +5551,34 @@ msgstr ""
"please <strong>don't forget to vote</strong> - it really helps to select the "
"best questions and answers!"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
"<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/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:36
+msgid ""
"<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/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+"not like)!"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
"<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/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
-msgstr "Login/Signup to Post"
-
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Post Your Answer"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5598,12 +5597,12 @@ msgid "email"
msgstr ""
"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Tags"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr ""
@@ -5613,15 +5612,15 @@ msgstr ""
"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."
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr ""
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr ""
@@ -5631,33 +5630,33 @@ msgstr ""
"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."
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "Last updated"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "Post Your Answer"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "Post Your Answer"
@@ -5667,58 +5666,45 @@ msgid "Stats"
msgstr ""
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "Asked"
+msgid "Asked"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "Seen"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr ""
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "Last updated"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
#, fuzzy
msgid "Related questions"
msgstr "ask a question interesting to this community"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-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/subscribe_by_email_prompt.html:11
-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/subscribe_by_email_prompt.html:13
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
#, fuzzy
-msgid "Notify me immediately when there are any new answers"
+msgid "Email me when there are any new answers"
msgstr ""
"<strong>Notify me</strong> weekly when there are any new answers or updates"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, 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/subscribe_by_email_prompt.html:21
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
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/subscribe_by_email_prompt.html:12
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+
#: skins/default/templates/user_profile/user.html:12
#, fuzzy, python-format
msgid "%(username)s's profile"
@@ -5754,8 +5740,13 @@ msgstr ""
msgid "Screen Name"
msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "sorry, but older votes cannot be revoked"
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
#, fuzzy
msgid "Update"
msgstr "Last updated"
@@ -5781,18 +5772,20 @@ msgstr ""
"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_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr ""
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Stop Email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5821,19 +5814,23 @@ msgid "flagged items (%(flag_count)s)"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
#, fuzzy
msgid "seen"
msgstr "Last updated"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
msgid "none"
msgstr ""
@@ -5850,6 +5847,16 @@ msgstr ""
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "Tags"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "How to change my picture (gravatar) and what is gravatar?"
+
#: skins/default/templates/user_profile/user_info.html:36
#, fuzzy
msgid "update profile"
@@ -5864,7 +5871,8 @@ msgid "real name"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "member since"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5873,7 +5881,8 @@ msgid "last seen"
msgstr "Last updated"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
+#, fuzzy
+msgid "website"
msgstr "website"
#: skins/default/templates/user_profile/user_info.html:75
@@ -6024,19 +6033,16 @@ msgid "%(username)s's network is empty"
msgstr "User login"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr ""
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr ""
@@ -6058,20 +6064,16 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Questions"
msgstr[0] ""
#: skins/default/templates/user_profile/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] ""
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "oldest"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr ""
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr ""
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6106,13 +6108,13 @@ msgid "<span class=\"count\">%(counter)s</span> Tag"
msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] ""
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
msgstr[0] ""
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "Tips"
@@ -6122,7 +6124,7 @@ msgstr "Tips"
msgid "User profile"
msgstr "User login"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr ""
@@ -6131,48 +6133,40 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "Graph of user karma"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "karma history"
-
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr ""
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
+#: skins/default/templates/user_profile/user_votes.html:4
+#, fuzzy
+msgid "votes"
msgstr "votes"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr ""
-#: skins/default/templates/user_profile/user_votes.html:4
-#, fuzzy
-msgid "votes"
-msgstr "votes"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "Tips"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "ask a question interesting to this community"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6187,7 +6181,9 @@ msgstr ""
"best questions and answers!"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
msgstr "provide enough details"
#: skins/default/templates/widgets/answer_edit_tips.html:15
@@ -6203,7 +6199,8 @@ msgstr "ask a question interesting to this community"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Markdown basics"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6227,11 +6224,6 @@ msgid "**bold** or __bold__"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr ""
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6258,11 +6250,6 @@ msgstr ""
msgid "learn more about Markdown"
msgstr ""
-#: skins/default/templates/widgets/ask_button.html:2
-#, fuzzy
-msgid "ask a question"
-msgstr "Ask Your Question"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
@@ -6272,26 +6259,25 @@ msgstr ""
"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."
-#: skins/default/templates/widgets/ask_form.html:10
-#, fuzzy, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"<span class='strong big'>Looks like your email address, %(email)s has not "
+
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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>."
+"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/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Login/Signup to Post"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Ask Your Question"
+"question will saved as pending meanwhile."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6307,10 +6293,15 @@ msgid "about"
msgstr ""
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr ""
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr ""
@@ -6332,18 +6323,11 @@ msgstr "people"
msgid "badges"
msgstr "Badges"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "Tips"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
+#, fuzzy
+msgid "ask a question interesting to this community"
msgstr "ask a question interesting to this community"
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "provide enough details"
-
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
msgid_plural "views"
@@ -6361,29 +6345,29 @@ msgid "vote"
msgid_plural "votes"
msgstr[0] "votes"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
#, fuzzy
msgid "see unanswered questions"
msgstr "Ask Your Question"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "Ask Your Question"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "Ask Your Question"
@@ -6397,24 +6381,30 @@ msgstr ""
msgid "badges:"
msgstr "Badges"
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "sign out"
+#: skins/default/templates/widgets/user_navigation.html:9
+msgid "sign out"
+msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "Hi, there! Please sign in"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+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."
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
#, fuzzy
msgid "settings"
msgstr "User login"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "no"
+#: templatetags/extra_filters_jinja.py:279
+msgid "no"
+msgstr ""
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr ""
@@ -6431,7 +6421,8 @@ msgid "this field is required"
msgstr ""
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "Choose screen name"
#: utils/forms.py:69
@@ -6463,8 +6454,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "Your email <i>(never shared)</i>"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6478,17 +6469,13 @@ msgstr ""
msgid "this email is already used by someone else, please choose another"
msgstr ""
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "Password"
-
#: utils/forms.py:170
msgid "password is required"
msgstr ""
#: utils/forms.py:173
-msgid "retype password"
-msgstr "Password <i>(please retype)</i>"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6498,26 +6485,57 @@ msgstr ""
msgid "sorry, entered passwords did not match, please try again"
msgstr ""
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr ""
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr ""
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] ""
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] ""
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6530,171 +6548,187 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr ""
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "Sorry, anonymous users cannot vote"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr ""
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr ""
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr ""
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr ""
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr ""
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
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:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr ""
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr ""
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+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."
+
+#: views/meta.py:37
+#, python-format
+msgid "About %(site)s"
+msgstr ""
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr ""
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr ""
+
+#: views/readers.py:133
#, fuzzy, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "Asked"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] ""
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr ""
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr ""
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr ""
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr ""
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr ""
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr ""
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr ""
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr ""
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "user karma"
+#: views/users.py:701
+msgid "user karma"
+msgstr ""
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "Profile - User's Karma"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr ""
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr ""
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr ""
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr ""
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr ""
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr ""
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:192
-#, fuzzy
-msgid "Please log in to ask questions"
-msgstr ""
+#: views/writers.py:189
+msgid ""
"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
#, fuzzy
msgid "Please log in to answer questions"
msgstr ""
@@ -6705,39 +6739,493 @@ msgstr ""
"please <strong>don't forget to vote</strong> - it really helps to select the "
"best questions and answers!"
-#: views/writers.py:600
+#: views/writers.py:572
#, 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:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
-#: views/writers.py:658
+#: views/writers.py:619
#, 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:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
+#~ msgid "question_answered"
+#~ msgstr "answered question"
+
+#~ msgid "question_commented"
+#~ msgstr "commented question"
+
+#~ msgid "Incorrect username."
+#~ msgstr "sorry, there is no such user name"
+
+#~ 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>Dear %(name)s,</p></p>The following %(num)d question has been updated "
+#~ "on the Q&A forum:</p>"
+
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "<p>Please remember that you can always <a "
+#~ "href='%(email_settings_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 "
+#~ "%(admin_email)s.</p><p>Sincerely,</p><p>Your friendly Q&A forum server.</"
+#~ "p>"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr "sorry, file uploading requires karma >%(min_rep)s"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#~ msgid "suspended users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr ""
+#~ "You have flagged this question before and cannot do it more than once"
+
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, since your account is blocked you cannot flag posts as offensive"
+
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr ""
+#~ "Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+#~ "required"
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr ""
+#~ "Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+#~ "offensive flags per day."
+
#, fuzzy
-#~ msgid "(please enter a valid email)"
-#~ msgstr "provide enough details"
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
-#~ msgid "Question tags"
+#, fuzzy
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] ""
+#~ "Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+#~ "required"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "sorry, but older votes cannot be revoked"
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Enter your new email into the box below</span> "
+#~ "if you'd like to use another email for <strong>update subscriptions</"
+#~ "strong>.<br>Currently you are using <strong>%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Please enter your email address in the box below."
+#~ "</span> Valid email address is required on this Q&amp;A forum. If you "
+#~ "like, you can <strong>receive updates</strong> on interesting questions "
+#~ "or entire forum via email. Also, your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. Email addresses are never shown or otherwise shared with anybody "
+#~ "else."
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
+#~ "anyone, must be valid)"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">An email with a validation link has been sent "
+#~ "to %(email)s.</span> Please <strong>follow the emailed link</strong> with "
+#~ "your web browser. Email validation is necessary to help insure the proper "
+#~ "use of email on <span class=\"orange\">Q&amp;A</span>. If you would like "
+#~ "to use <strong>another email</strong>, please <a "
+#~ "href='%(change_email_url)s'><strong>change it again</strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Your email address %(email)s has not been "
+#~ "changed.</span> If you decide to change it later - you can always do it "
+#~ "by editing it in your user profile or by using the <a "
+#~ "href='%(change_email_url)s'><strong>previous form</strong></a> again."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Your email address is now set to %(email)s.</"
+#~ "span> Updates on the questions that you like most will be sent to this "
+#~ "address. Email notifications are sent once a day or less frequently - "
+#~ "only when there are any news."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Thank you for verifying your email!</span> Now "
+#~ "you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+#~ "if you find a very interesting question you can <strong>subscribe for the "
+#~ "updates</strong> - then will be notified about changes <strong>once a "
+#~ "day</strong> or less frequently."
+
+#~ msgid "email key not sent"
+#~ msgstr "Validation email not sent"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Your current email address %(email)s has been "
+#~ "validated before</span> so the new key was not sent. You can <a "
+#~ "href='%(change_link)s'>change</a> email used for update subscriptions if "
+#~ "necessary."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "%(provider)s login.</span> Please create your <strong>screen name</"
+#~ "strong> and save your <strong>email</strong> address. Saved email address "
+#~ "will let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<p><span class='strong big'>Oops... looks like screen name %(username)s "
+#~ "is already used in another account.</span></p><p>Please choose another "
+#~ "screen name to use with your %(provider)s login. Also, a valid email "
+#~ "address is required on the <span class='orange'>Q&amp;A</span> forum. "
+#~ "Your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. If you like, you can <strong>receive updates</strong> on the "
+#~ "interesting questions or entire forum by email. Email addresses are never "
+#~ "shown or otherwise shared with anybody else.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "%(provider)s login.</span></p><p>You can either keep your <strong>screen "
+#~ "name</strong> the same as your %(provider)s login name or choose some "
+#~ "other nickname.</p><p>Also, please save a valid <strong>email</strong> "
+#~ "address. With the email you can <strong>subscribe for the updates</"
+#~ "strong> on the most interesting questions. Email address is also used to "
+#~ "create and retrieve your unique avatar image - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "Facebook login.</span> Please create your <strong>screen name</strong> "
+#~ "and save your <strong>email</strong> address. Saved email address will "
+#~ "let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid "Screen name label"
+#~ msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
+
+#~ msgid "Email address label"
+#~ msgstr ""
+#~ "<strong>Email Address</strong> (<i>will <strong>not</strong> be shared "
+#~ "with anyone, must be valid</i>)"
+
+#~ 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."
+
+#~ msgid "create account"
+#~ msgstr "Signup"
+
+#~ msgid "Login"
+#~ msgstr "Sign in"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "With the OpenID you don't need to create new username and password."
+
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "You can safely re-use the same login for all OpenID-enabled websites."
+
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "There are > 160,000,000 OpenID account in use. Over 10,000 sites are "
+#~ "OpenID-enabled."
+
+#~ msgid "openid is supported open standard"
+#~ msgstr ""
+#~ "OpenID is based on an open standard, supported by many organizations."
+
+#~ 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."
+
+#, fuzzy
+#~ msgid "Create Account"
+#~ msgstr "Signup"
+
+#~ msgid "answer permanent link"
+#~ msgstr "permanent link"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "Tags"
+
+#~ msgid "Related tags"
#~ msgstr "Tags"
#, fuzzy
-#~ msgid "questions"
+#~ msgid "Ask a question"
+#~ msgstr "Ask Your Question"
+
+#~ msgid "Badges summary"
+#~ msgstr "Badges"
+
+#~ msgid "gold badge description"
+#~ msgstr ""
+#~ "Gold badge is the highest award in this community. To obtain it have to "
+#~ "show profound knowledge and ability in addition to your active "
+#~ "participation."
+
+#~ msgid "silver badge description"
+#~ msgstr ""
+#~ "silver badge: occasionally awarded for the very high quality contributions"
+
+#~ msgid "bronze badge description"
+#~ msgstr "bronze badge: often given as a special honor"
+
+#~ msgid ""
+#~ "is a Q&A site, not a discussion group. Therefore - please avoid having "
+#~ "discussions in your answers, comment facility allows some space for brief "
+#~ "discussions."
+#~ msgstr ""
+#~ "is a <strong>question and answer</strong> site - <strong>it is not a "
+#~ "discussion group</strong>. Please avoid holding debates in your answers "
+#~ "as they tend to dilute the essense of questions and answers. For the "
+#~ "brief discussions please use commenting facility."
+
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "When a question or answer is upvoted, the user who posted them will gain "
+#~ "some points, which are called \"karma points\". These points serve as a "
+#~ "rough measure of the community trust to him/her. Various moderation tasks "
+#~ "are gradually assigned to the users based on those points."
+
+#, fuzzy
+#~ msgid "use tags"
+#~ msgstr "Tags"
+
+#~ msgid "what is gravatar"
+#~ msgstr "How to change my picture (gravatar) and what is gravatar?"
+
+#~ msgid "gravatar faq info"
+#~ msgstr ""
+#~ "<p>The picture that appears on the users profiles is called "
+#~ "<strong>gravatar</strong> (which means <strong>g</strong>lobally "
+#~ "<strong>r</strong>ecognized <strong>avatar</strong>).</p><p>Here is how "
+#~ "it works: a <strong>cryptographic key</strong> (unbreakable code) is "
+#~ "calculated from your email address. You upload your picture (or your "
+#~ "favorite alter ego image) the website <a href='http://gravatar."
+#~ "com'><strong>gravatar.com</strong></a> from where we later retreive your "
+#~ "image using the key.</p><p>This way all the websites you trust can show "
+#~ "your image next to your posts and your email address remains private.</"
+#~ "p><p>Please <strong>personalize your account</strong> with an image - "
+#~ "just register at <a href='http://gravatar.com'><strong>gravatar.com</"
+#~ "strong></a> (just please be sure to use the same email address that you "
+#~ "used to register with us). Default image that looks like a kitchen tile "
+#~ "is generated automatically.</p>"
+
+#~ msgid "Change tags"
+#~ msgstr "Retag question"
+
+#~ msgid "reputation"
+#~ msgstr "karma"
+
+#~ msgid "newest answers"
+#~ msgstr "newest"
+
+#~ msgid "popular answers"
+#~ msgstr "most voted"
+
+#~ 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)!"
+
+#~ 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)! "
+
+#~ 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!"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Login/Signup to Post"
+
+#~ msgid "question asked"
+#~ msgstr "Asked"
+
+#~ msgid "question was seen"
+#~ msgstr "Seen"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Notify me</strong> weekly when there are any new answers or "
+#~ "updates"
+
+#~ 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)"
+
+#~ 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."
+
+#~ msgid "Stop sending email"
+#~ msgstr "Stop Email"
+
+#~ msgid "reputation history"
+#~ msgstr "karma history"
+
+#~ msgid "casted votes"
+#~ msgstr "votes"
+
+#~ msgid "answer tips"
+#~ msgstr "Tips"
+
+#~ msgid "please try to provide details"
+#~ msgstr "provide enough details"
+
+#, fuzzy
+#~ msgid "ask a question"
+#~ msgstr "Ask Your Question"
+
+#, fuzzy
+#~ 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. "
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Login/Signup to Post"
+
+#~ msgid "question tips"
#~ msgstr "Tips"
+#~ msgid "please ask a relevant question"
+#~ msgstr "ask a question interesting to this community"
+
+#~ msgid "logout"
+#~ msgstr "sign out"
+
+#~ msgid "login"
+#~ msgstr "Hi, there! Please sign in"
+
+#~ msgid "no items in counter"
+#~ msgstr "no"
+
+#~ msgid "choose password"
+#~ msgstr "Password"
+
+#~ msgid "retype password"
+#~ msgstr "Password <i>(please retype)</i>"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "user karma"
+
+#, fuzzy
+#~ msgid "Please log in to ask questions"
+#~ 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."
+
+#, fuzzy
+#~ msgid "(please enter a valid email)"
+#~ msgstr "provide enough details"
+
+#~ msgid "Question tags"
+#~ msgstr "Tags"
+
#~ msgid "Email verification subject line"
#~ msgstr "Verification Email from Q&A forum"
diff --git a/askbot/locale/ko/LC_MESSAGES/djangojs.po b/askbot/locale/ko/LC_MESSAGES/djangojs.po
index e9efddac..3e40eaa0 100644
--- a/askbot/locale/ko/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/ko/LC_MESSAGES/djangojs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:51-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,148 +75,76 @@ msgstr ""
msgid "loading..."
msgstr ""
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr ""
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr ""
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr ""
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr ""
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr ""
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+msgid "please confirm removal of offensive flag"
+msgstr ""
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr ""
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr ""
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr ""
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr ""
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, fuzzy, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
-msgstr[1] "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr ""
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr ""
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr ""
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr ""
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr ""
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -229,114 +157,112 @@ msgid "Delete this notification?"
msgid_plural "Delete these notifications?"
msgstr[0] ""
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] ""
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+
+#: skins/common/media/js/user.js:79
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] ""
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
+#, fuzzy
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] ""
+#~ "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+#~ "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+#~ msgstr[1] "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
diff --git a/askbot/locale/pt/LC_MESSAGES/django.po b/askbot/locale/pt/LC_MESSAGES/django.po
index 1069f632..e1a027e8 100644
--- a/askbot/locale/pt/LC_MESSAGES/django.po
+++ b/askbot/locale/pt/LC_MESSAGES/django.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:56-0500\n"
"PO-Revision-Date: 2012-02-17 16:06-0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: Portuguese <traducao@pt.libreoffice.org >\n"
@@ -20,15 +20,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "Desculpe, mas os visitantes anónimos não podem aceder a esta função"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr " - "
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr ""
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "últimas questões"
@@ -55,24 +55,33 @@ msgstr "título"
msgid "please enter a descriptive title for your question"
msgstr "por favor, indique o título descritivo da sua questão"
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] ""
msgstr[1] ""
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "conteúdo"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "tags"
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -83,106 +92,106 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "As tags são obrigatórias"
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "por favor, utilize %(tag_count)d tag ou menos"
msgstr[1] "por favor, utilize %(tag_count)d tags ou menos"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "É necessária, pelo menos, uma das seguintes tags: %(tags)s"
-#: forms.py:227
+#: forms.py:249
#, 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] "cada tag deve ter menos de %(max_chars)d carácter"
msgstr[1] "cada tag deve ter menos de %(max_chars)d caracteres"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "utilize estes caracteres nas tags"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
msgstr ""
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "atualizar resumo:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
msgstr ""
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Indique o número de pontos a adicionar ou remover"
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "aprovado"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "monitorizado"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "suspenso"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "bloqueado"
-#: forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr "administrador"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "moderador"
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr "Alterar estado para"
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "qual?"
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr "Não pode alterar o seu estado"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "Não pode transformar outro utilizador em moderador"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "Não pode alterar o estado de outro moderador"
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "Não pode alterar o estado para administrador"
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -190,43 +199,48 @@ msgid ""
msgstr ""
"Se pretende alterar o estado de %(username)s, faça uma seleção significativa."
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Linha de assunto"
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "Texto da mensagem"
-#: forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr "O seu nome (opcional):"
-#: forms.py:580
+#: forms.py:531
msgid "Email:"
msgstr "Endereço eletrónico:"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "A sua mensagem:"
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "Não quero indicar o endereço eletrónico nem receber uma resposta:"
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr "Assinale o campo \"Não quero indicar o endereço eletrónico\"."
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr "perguntar anonimamente"
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr "Assinale se não quiser revelar o seu nome ao fazer esta questão"
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
@@ -234,11 +248,11 @@ msgstr ""
"Colocou esta questão de forma anónima. Se mudar de ideia e quiser revelar "
"sua identidade, por favor, marque esta caixa."
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr "revelar identidade"
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
@@ -246,199 +260,215 @@ msgstr ""
"Desculpe, mas só o criador da questão anónima pode revelar a identidade. Por "
"favor, desmarque a caixa"
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr "este endereço ficará vinculado ao \"gravatar\""
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Nome real"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "Sítio web"
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr "Cidade"
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr "Mostrar país"
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Data de nascimento"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
"não será mostrado. Utilizado para calcular a idade no formato: AAAA-MM-DD"
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "Perfil"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Nome a exibir"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "este endereço eletrónico já está registado. Por favor, utilize outro."
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Escolha o filtro de endereço eletrónico"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "As minhas questões"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "As minhas respostas"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Selecionadas individualmente"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Todo o fórum (filtrar por tag)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Os meus comentários e mensagens"
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "por favor, escolha uma das opções acima"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "pronto, vamos tentar!"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr ""
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "por favor, escolha uma das opções acima"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
-#: urls.py:52
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
+#: urls.py:41
msgid "about/"
msgstr "sobre/"
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr "faq/"
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "privacidade/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "respostas/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "editar/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "revisões/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+#, fuzzy
+msgid "questions"
+msgstr "questões/"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "questões/"
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "perguntar/"
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr "alterar tag/"
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "fechar/"
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "reabrir/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "responder/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "votar/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr "widgets/"
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "tags/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "subscrever por tags/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "utilizadores/"
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr "subscrições/"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "mensagens/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "marcar como lida/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "enviar/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "comentários/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "questão/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "conta/"
@@ -566,151 +596,174 @@ msgid ""
msgstr ""
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Definições de endereço eletrónico e alertas"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr ""
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr ""
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr ""
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr ""
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr ""
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr ""
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr ""
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr ""
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+msgid "Enable posting answers and comments by email"
+msgstr ""
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -741,15 +794,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -757,11 +810,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -769,70 +822,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr ""
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -871,11 +908,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -931,107 +970,165 @@ msgid "Minimum length of answer body (number of characters)"
msgstr ""
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "As tags são obrigatórias"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr ""
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr ""
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr ""
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Barra lateral da página principal"
+
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "Barra lateral da página principal"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1105,16 +1202,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr "Enviar o seu ícone"
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1278,6 +1375,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1475,27 +1576,27 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr ""
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1620,21 +1721,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr "Mostrar logotipo"
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr "\"Favicon\" do sítio"
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1642,40 +1743,40 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr "Selecione o tema"
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1687,11 +1788,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1700,21 +1801,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1723,21 +1824,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1746,19 +1847,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1769,19 +1870,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1846,38 +1947,65 @@ msgstr "Serviços externos"
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
msgid "User settings"
msgstr "Definições do utilizador"
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+msgid "Allow users change own email addresses"
+msgstr ""
+
+#: conf/user_settings.py:41
msgid "Allow account recovery by email"
msgstr ""
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+#, fuzzy
+msgid "Default avatar for users"
+msgstr "Valor padrão: %s"
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -1984,326 +2112,339 @@ msgstr ""
msgid "too localized"
msgstr ""
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "recentes"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "antigas"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "ativa"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "inativa"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "mais quentes"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "mais frias"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "mais votadas"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "menos votadas"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "relevantes"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "todas"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "não respondidas"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "favoritas"
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr "lista"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr "nuvem"
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "A questão não tem respostas"
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "A questão não tem respostas aceites"
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr "colocou uma questão"
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr "respondeu uma questão"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "questão comentada"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "resposta comentada"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "questão editada"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "resposta editada"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "recebeu um prémio"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "marcada como melhor resposta"
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr ""
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr ""
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "voto cancelado"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "questão eliminada"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "resposta eliminada"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "assinalada como ofensiva"
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "tags atualizadas"
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr ""
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr ""
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr ""
-#: const/__init__.py:142
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr ""
-#: const/__init__.py:146
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr ""
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr ""
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr ""
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr ""
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr ""
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr ""
+#, fuzzy
+msgid "answered question"
+msgstr "respondeu uma questão"
+
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "resposta editada"
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[fechada]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[eliminada]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "versão inicial"
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "nova tag"
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr "desligado"
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "excluir ignoradas"
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr "só selecionadas"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "imediatamente"
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "diariamente"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "semanalmente"
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "sem endereço eletrónico"
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr ""
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
msgid "wavatar"
msgstr "wavatar"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr "retro"
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "ouro"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "prata"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "bronze"
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr "Nada"
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr "Gravatar"
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr "Avatar enviado"
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr "questões mais relevantes"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr "clique para ver as questões mais relevantes"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "por relevância"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "clique para ver as questões mais antigas"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "por data"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "clique para ver as questões mais recentes"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "clique para ver as questões não atualizadas recentemente"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "por atividade"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "clique para ver as questões atualizadas recentemente"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr "clique para ver as questões com menos respostas"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "por respostas"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr "clique para ver as questões mais respondidas"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "clique para ver as questões menos votadas"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "por votos"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "clique para ver as questões mais votadas"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr ""
@@ -2352,11 +2493,12 @@ msgid "Your user name (<i>required</i>)"
msgstr ""
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Nome de utilizador inválido."
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "Por favor, indique o seu nome de utilizador"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "iniciar sessão/"
@@ -2394,7 +2536,7 @@ msgid "%(site)s user name and password"
msgstr ""
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2476,76 +2618,76 @@ msgstr ""
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr ""
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr ""
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr ""
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2553,28 +2695,28 @@ msgstr ""
msgid "Site"
msgstr "Sítio"
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr "Principal"
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "Definições base"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Valor padrão: \"\""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Valor padrão:"
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Valor padrão: %s"
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr ""
@@ -2590,7 +2732,7 @@ msgstr "Documentação"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Alterar senha"
@@ -2650,112 +2792,52 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr ""
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
msgstr[1] ""
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
msgstr[1] ""
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "nova questão"
-#: 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 ""
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2767,83 +2849,74 @@ msgstr[1] ""
msgid "Please log in to use %s"
msgstr ""
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr ""
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+msgid "Sorry, you cannot vote for your own posts"
msgstr ""
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ""
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ""
-#: models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr ""
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr ""
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr ""
-
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2854,56 +2927,56 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:510
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -2913,266 +2986,269 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
+#: models/__init__.py:783
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
-msgstr ""
-
-#: models/__init__.py:768
+#: models/__init__.py:794
#, python-format
-msgid "need > %(min_rep)s points to flag spam"
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
msgstr ""
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
-msgid "blocked users cannot remove flags"
+#: models/__init__.py:833
+msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
-#: models/__init__.py:805
-msgid "suspended users cannot remove flags"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
msgstr ""
-#: models/__init__.py:809
+#: models/__init__.py:843
#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "em %(date)s"
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr "amanhã"
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "em %(hr)d hora"
msgstr[1] "em %(hr)d horas"
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "em %(min)d minuto"
msgstr[1] "em %(min)d minutos"
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] "%(days)d dia"
msgstr[1] "%(days)d dias"
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "Anónimo"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Adminictrador do sítio"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Moderador do fórum"
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Utilizador suspenso"
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Utilizador bloqueado"
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Utilizador registado"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Utilizador monitorizado"
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Utilizador aprovado"
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr ""
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr "\"%(title)s\""
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3430,154 +3506,136 @@ msgstr ""
msgid "Created a tag used by %(num)s questions"
msgstr ""
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr ""
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr ""
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr ""
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr ""
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" e \"%s\""
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr "\" e mais"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr ""
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr ""
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr ""
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr ""
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr ""
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Validae endereço"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr ""
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "ignorada"
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "Todo o fórum"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Questões que eu respondi"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Questões que eu coloquei"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr ""
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr ""
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Imediatamente"
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Diariamente"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "Semanalmente"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr "Iniciar sessão"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Alterar endereço eletrónico"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3586,27 +3644,38 @@ msgstr "Gravar endereço eletrónico"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3614,114 +3683,113 @@ msgstr ""
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Cancelar"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "Validae endereço"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr ""
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Validae endereço"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
msgid "Registration"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:27
-#, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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 ""
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr ""
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "Definições do utilizador"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "criar conta"
-
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
msgstr ""
@@ -3744,10 +3812,11 @@ msgstr ""
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
-msgstr ""
+"Q&A Forum Administrator"
+msgstr "Adminictrador do sítio"
#: skins/common/templates/authopenid/email_validation.txt:1
msgid "Greetings from the Q&A forum"
@@ -3763,8 +3832,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -3804,9 +3873,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -3840,120 +3909,88 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
#: skins/common/templates/authopenid/signin.html:93
+msgid "Please, sign in"
+msgstr ""
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Senha"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr "Nova senha"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr "fornecedor"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "eliminar"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr "não pode ser eliminado"
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "Saiba mais"
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr "Obter OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr ""
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
msgstr ""
@@ -3967,24 +4004,29 @@ msgid "Create login name and password"
msgstr ""
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Criar conta"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "ou"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr ""
@@ -4041,66 +4083,68 @@ msgstr ""
msgid "Delete These"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
+#: skins/common/templates/question/answer_controls.html:2
+msgid "swap with question"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "editar"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "ligação"
+
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "recuperar"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
-msgid "remove all flags"
+#: skins/common/templates/question/answer_controls.html:19
+#, fuzzy
+msgid "remove offensive flag"
+msgstr "assinalada como ofensiva"
+
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+msgid "remove flag"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-msgid "remove flag"
-msgstr ""
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "recuperar"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "editar"
-#: skins/common/templates/question/answer_controls.html:50
-msgid "swap with question"
-msgstr ""
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "esta resposta foi escolhida como correta"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
msgid "mark this answer as correct (click again to undo)"
msgstr ""
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr ""
-
#: skins/common/templates/question/closed_question_info.html:2
#, python-format
msgid ""
@@ -4114,58 +4158,67 @@ msgid "close date %(closed_at)s"
msgstr ""
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr ""
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "reabrir"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "fechar"
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
+msgstr "O campo país é obrigatório"
+
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "tags"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(necessário)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr ""
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Tags relacionadas"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr "Tags interessantes"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
msgid "add"
msgstr "adicionar"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "Tags ignoradas"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr ""
@@ -4215,7 +4268,7 @@ msgid "back to previous page"
msgstr "voltar à página anterior"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr "ver todas as questões"
@@ -4244,11 +4297,6 @@ msgstr "ver as últimas questões"
msgid "see tags"
msgstr "ver tags"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4278,17 +4326,20 @@ msgstr "Gravar edição"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "mostrar antevisão"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "Colocar uma questão"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "Coloque a sua questão"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr "%(name)s"
@@ -4303,8 +4354,8 @@ msgid "Badge \"%(name)s\""
msgstr ""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, python-format
msgid "%(description)s"
msgstr ""
@@ -4315,11 +4366,7 @@ msgid_plural "users received this badge:"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr ""
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr ""
@@ -4331,39 +4378,41 @@ msgstr ""
#, 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"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr ""
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr ""
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr ""
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr ""
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Fechar questão"
@@ -4380,11 +4429,10 @@ msgstr "Motivos"
msgid "OK to close"
msgstr ""
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr "FAQ"
@@ -4404,12 +4452,12 @@ msgstr ""
#: skins/default/templates/faq_static.html:8
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+msgid "What kinds of questions should be avoided?"
msgstr ""
#: skins/default/templates/faq_static.html:11
@@ -4424,9 +4472,10 @@ msgstr ""
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
#: skins/default/templates/faq_static.html:15
@@ -4443,16 +4492,20 @@ msgstr ""
#: skins/default/templates/faq_static.html:18
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+msgid "How does karma system work?"
msgstr ""
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
msgstr ""
#: skins/default/templates/faq_static.html:22
@@ -4473,93 +4526,104 @@ msgstr ""
msgid "upvote"
msgstr ""
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr ""
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "adicionar comentários"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr ""
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
msgid " accept own answer to own questions"
msgstr ""
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr ""
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr ""
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr ""
-#: skins/default/templates/faq_static.html:67
-msgid "\"edit any answer"
-msgstr ""
+#: skins/default/templates/faq_static.html:61
+#, fuzzy
+msgid "edit any answer"
+msgstr "resposta editada"
-#: skins/default/templates/faq_static.html:71
-msgid "\"delete any comment"
-msgstr ""
+#: skins/default/templates/faq_static.html:65
+#, fuzzy
+msgid "delete any comment"
+msgstr "Abandonar comentários"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr ""
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
msgstr ""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr ""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr ""
-#: skins/default/templates/faq_static.html:85
+#: skins/default/templates/faq_static.html:80
#, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
#: skins/default/templates/feedback.html:3
@@ -4613,6 +4677,68 @@ msgid ""
"Hello, this is a %(site_title)s forum feedback message.\n"
msgstr ""
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "respostas de %(username)s"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -4711,174 +4837,155 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr ""
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr ""
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-msgid "i like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr ""
-#: skins/default/templates/macros.html:43
-msgid "i dont like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
msgid "anonymous user"
msgstr "utilizador anónimo"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr ""
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr ""
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr ""
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr ""
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr ""
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr ""
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr ""
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/default/templates/macros.html:310
-#, 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/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr ""
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr ""
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "anterior"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "página atual"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "página %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "página seguinte"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "mmensagens por página"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr "respostas de %(username)s"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -4887,10 +4994,34 @@ msgstr ""
msgid "Questions"
msgstr "Questões"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
-msgstr "Política de privacidade"
+#: skins/default/templates/question.html:110
+msgid "post a comment / <strong>some</strong> more"
+msgstr ""
+
+#: skins/default/templates/question.html:113
+msgid "see <strong>some</strong> more"
+msgstr ""
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "adicionar comentários"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr ""
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "A sua resposta"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+msgid "Login/Signup to Post"
+msgstr ""
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
@@ -4899,8 +5030,9 @@ msgstr "Editar questão"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Alterar tags"
+#, fuzzy
+msgid "Retag question"
+msgstr "Questões relacionadas"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -4953,6 +5085,13 @@ msgstr ""
msgid "Reopen this question"
msgstr ""
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -4980,17 +5119,17 @@ msgstr ""
msgid "Subscribe"
msgstr ""
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr ""
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr ""
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
msgstr ""
@@ -5010,7 +5149,7 @@ msgstr ""
msgid "by popularity"
msgstr "por popularidade"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "Nada encontrado"
@@ -5024,8 +5163,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "reputação"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5056,7 +5197,7 @@ msgstr ""
msgid "Nothing found."
msgstr "Nada encontrado."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5072,39 +5213,39 @@ msgstr ""
msgid "Tagged"
msgstr ""
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr ""
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr ""
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
msgid " or "
msgstr " ou"
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr ""
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr ""
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr ""
@@ -5141,19 +5282,19 @@ msgstr ""
msgid "Please always feel free to ask your question!"
msgstr ""
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr ""
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr ""
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
msgid "subscribe to the questions feed"
msgstr ""
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr "RSS"
@@ -5165,35 +5306,35 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
msgstr ""
#: skins/default/templates/question/answer_tab_bar.html:3
-#, python-format
+#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
@@ -5204,67 +5345,63 @@ msgstr[1] ""
" %(counter)s respostas\n"
" "
+#: skins/default/templates/question/answer_tab_bar.html:11
+msgid "Sort by »"
+msgstr ""
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "respostas antigas"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "respostas recentes"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "respostas populares"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr ""
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "A sua resposta"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+msgid ""
+"<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)!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Responder à questão"
-
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
msgid ""
@@ -5280,52 +5417,52 @@ msgstr " ou"
msgid "email"
msgstr ""
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr ""
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr ""
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr ""
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr ""
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr ""
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr "subscrever a esta questão via RSS"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr "subscrever a fonte RSS"
@@ -5334,46 +5471,39 @@ msgid "Stats"
msgstr "Estatísticas"
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "questão colocada"
+#, fuzzy
+msgid "Asked"
+msgstr "As minhas questões"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "a questão foi vista"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "vezes"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
-msgstr ""
+#, fuzzy
+msgid "Last updated"
+msgstr "menos votadas"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Questões relacionadas"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+msgid "Email me when there are any new answers"
msgstr ""
#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
-msgstr ""
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
+msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr ""
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
-msgid "once you sign in you will be able to subscribe for any updates here"
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
msgstr ""
#: skins/default/templates/user_profile/user.html:12
@@ -5407,8 +5537,13 @@ msgstr "Utilizador registado"
msgid "Screen Name"
msgstr "Nome a exibir"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "não pode ser eliminado"
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Atualizar"
@@ -5421,13 +5556,19 @@ msgstr "subscrições"
msgid "Email subscription settings"
msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr ""
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr "sem endereço eletrónico"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5454,18 +5595,22 @@ msgid "flagged items (%(flag_count)s)"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
msgid "seen"
msgstr "vistas"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr "nova"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
msgid "none"
msgstr "nada"
@@ -5481,6 +5626,16 @@ msgstr "marcar como nova"
msgid "dismiss"
msgstr "rejeitar"
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "remover"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "eliminar"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "atualizar perfil"
@@ -5494,7 +5649,8 @@ msgid "real name"
msgstr "nome real"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "membro de"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5502,8 +5658,9 @@ msgid "last seen"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr ""
+#, fuzzy
+msgid "website"
+msgstr "Sítio web"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -5641,19 +5798,16 @@ msgid "%(username)s's network is empty"
msgstr ""
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr "atividade"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr ""
@@ -5676,21 +5830,17 @@ msgstr[0] ""
msgstr[1] ""
#: skins/default/templates/user_profile/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] ""
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "resposta"
+msgstr[1] "respostas"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "a resposta foi votada %(answer_score)s vezes"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "esta resposta foi escolhida como correta"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -5728,14 +5878,14 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, 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_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
msgid "Answer to:"
msgstr "Responder a:"
@@ -5743,7 +5893,7 @@ msgstr "Responder a:"
msgid "User profile"
msgstr "Perfil do utilizador:"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr ""
@@ -5752,47 +5902,37 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
-msgstr ""
-
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
+msgid "Graph of user karma"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "atividade recente"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr ""
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "votos"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr ""
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "votos"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+msgid "give an answer interesting to this community"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -5800,7 +5940,8 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+msgid "provide enough details"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:15
@@ -5815,7 +5956,7 @@ msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+msgid "Markdown basics"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -5839,11 +5980,6 @@ msgid "**bold** or __bold__"
msgstr "**negrito** ou _negrito_"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "ligação"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -5870,30 +6006,30 @@ msgstr ""
msgid "learn more about Markdown"
msgstr ""
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "colocar questão"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
msgstr ""
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Coloque a sua questão"
-
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
msgstr "Contribuintes"
@@ -5908,10 +6044,15 @@ msgid "about"
msgstr "sobre"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "política de privacidade"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "enviar comentários"
@@ -5932,16 +6073,8 @@ msgstr "utilizadores"
msgid "badges"
msgstr ""
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr ""
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr ""
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
+msgid "ask a question interesting to this community"
msgstr ""
#: skins/default/templates/widgets/question_summary.html:12
@@ -5962,27 +6095,27 @@ msgid_plural "votes"
msgstr[0] "voto"
msgstr[1] "votos"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr "Tudo"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "see your followed questions"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
msgid "Please ask your question here"
msgstr ""
@@ -5994,23 +6127,25 @@ msgstr ""
msgid "badges:"
msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr ""
+#: skins/default/templates/widgets/user_navigation.html:9
+#, fuzzy
+msgid "sign out"
+msgstr "sair da sessão/"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
+#: skins/default/templates/widgets/user_navigation.html:12
+msgid "Hi, there! Please sign in"
msgstr ""
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr "definições"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr ""
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr "nada"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr ""
@@ -6027,7 +6162,8 @@ msgid "this field is required"
msgstr "este campo é obrigatório"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "escolha o nome de utilizador"
#: utils/forms.py:69
@@ -6059,7 +6195,7 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
+msgid "Your email <i>(never shared)</i>"
msgstr ""
#: utils/forms.py:139
@@ -6074,17 +6210,13 @@ msgstr ""
msgid "this email is already used by someone else, please choose another"
msgstr ""
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "escolha a senha"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "a senha é obrigatória"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "indique novamente a senha"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6094,28 +6226,59 @@ msgstr "por favor, indique novamente a senha"
msgid "sorry, entered passwords did not match, please try again"
msgstr ""
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "2 dias atrás"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "ontem"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] ""
msgstr[1] ""
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] ""
msgstr[1] ""
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6128,190 +6291,270 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
msgstr ""
-#: views/commands.py:59
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
+msgstr "Desculpe, mas os visitantes anónimos não podem aceder a esta função"
+
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr ""
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr ""
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr ""
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr ""
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr ""
-#: views/commands.py:320
+#: views/commands.py:339
#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr ""
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr ""
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr ""
-#: views/meta.py:84
+#: views/commands.py:620
+msgid "Please sign in to delete/restore posts"
+msgstr ""
+
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "em %(date)s"
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr ""
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr "Política de privacidade"
+
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] ""
msgstr[1] ""
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] ""
-msgstr[1] ""
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr ""
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr ""
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr ""
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr ""
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr ""
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr ""
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr ""
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr ""
-#: views/users.py:897
-msgid "user reputation in the community"
+#: views/users.py:701
+msgid "user karma"
msgstr ""
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+msgid "Profile - User's Karma"
msgstr ""
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr ""
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr ""
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr ""
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr ""
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr ""
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr ""
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:192
-msgid "Please log in to ask questions"
+#: views/writers.py:189
+msgid ""
+"<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."
msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr ""
-#: views/writers.py:600
+#: views/writers.py:572
#, 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:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
-#: views/writers.py:658
+#: views/writers.py:619
#, 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:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "utilize estes caracteres nas tags"
+
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "este endereço ficará vinculado ao \"gravatar\""
+
+#~ msgid "Incorrect username."
+#~ msgstr "Nome de utilizador inválido."
+
+#~ msgid "create account"
+#~ msgstr "criar conta"
+
+#~ msgid "Find out more"
+#~ msgstr "Saiba mais"
+
+#~ msgid "Get OpenID"
+#~ msgstr "Obter OpenID"
+
+#~ msgid "Create Account"
+#~ msgstr "Criar conta"
+
+#~ msgid "Related tags"
+#~ msgstr "Tags relacionadas"
+
+#~ msgid "Ask a question"
+#~ msgstr "Colocar uma questão"
+
+#~ msgid "posts per page"
+#~ msgstr "mmensagens por página"
+
+#~ msgid "Change tags"
+#~ msgstr "Alterar tags"
+
+#~ msgid "reputation"
+#~ msgstr "reputação"
+
+#~ msgid "oldest answers"
+#~ msgstr "respostas antigas"
+
+#~ msgid "newest answers"
+#~ msgstr "respostas recentes"
+
+#~ msgid "popular answers"
+#~ msgstr "respostas populares"
+
+#~ msgid "Answer the question"
+#~ msgstr "Responder à questão"
+
+#~ msgid "question asked"
+#~ msgstr "questão colocada"
+
+#~ msgid "question was seen"
+#~ msgstr "a questão foi vista"
+
+#~ msgid "recent activity"
+#~ msgstr "atividade recente"
+
+#~ msgid "ask a question"
+#~ msgstr "colocar questão"
+
+#~ msgid "choose password"
+#~ msgstr "escolha a senha"
+
+#~ msgid "retype password"
+#~ msgstr "indique novamente a senha"
+
#~ msgid "title must be &gt; %d character"
#~ msgid_plural "title must be &gt; %d characters"
#~ msgstr[0] "o título tem que ter mais de %d carácter"
diff --git a/askbot/locale/pt/LC_MESSAGES/djangojs.po b/askbot/locale/pt/LC_MESSAGES/djangojs.po
index d4d5124f..dd9cacbd 100644
--- a/askbot/locale/pt/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/pt/LC_MESSAGES/djangojs.po
@@ -4,9 +4,9 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:56-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,146 +75,76 @@ msgstr ""
msgid "loading..."
msgstr ""
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr ""
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr ""
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr ""
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr ""
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr ""
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+msgid "please confirm removal of offensive flag"
+msgstr ""
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr ""
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr ""
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr ""
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr ""
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr ""
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr ""
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr ""
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr ""
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr ""
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -228,114 +158,107 @@ msgid_plural "Delete these notifications?"
msgstr[0] ""
msgstr[1] ""
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
diff --git a/askbot/locale/pt_BR/LC_MESSAGES/django.po b/askbot/locale/pt_BR/LC_MESSAGES/django.po
index 0710f235..a1bb7459 100644
--- a/askbot/locale/pt_BR/LC_MESSAGES/django.po
+++ b/askbot/locale/pt_BR/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:26-0600\n"
+"POT-Creation-Date: 2012-04-18 18:53-0500\n"
"PO-Revision-Date: 2011-06-30 21:57+0000\n"
"Last-Translator: sandrossv <sandrossv@hotmail.com>\n"
"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/"
@@ -22,15 +22,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "Desculpe, mas os visitantes anônimos não podem acessar esta função"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr "-"
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr "inserção de pergunta individual"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "últimas perguntas"
@@ -57,24 +57,33 @@ msgstr "título"
msgid "please enter a descriptive title for your question"
msgstr "digite um título descritivo para sua pergunta"
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "o título deve ter mais de %d caracteres"
msgstr[1] "o título deve ter mais de %d caracteres"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "conteúdo"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "tags"
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -83,16 +92,17 @@ msgid_plural ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tags can "
"be used."
msgstr[0] ""
-"Tags são palavras-chave, sem espaços. Até %(max_tags)d tags podem ser usadas."
+"Tags são palavras-chave, sem espaços. Até %(max_tags)d tags podem ser "
+"usadas."
msgstr[1] ""
"Tags são palavras-chave curtas, sem espaços. Até %(max_tags)d tags podem ser "
"usadas."
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "tags são necessárias"
-#: forms.py:210
+#: forms.py:232
#, fuzzy, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
@@ -108,34 +118,29 @@ msgstr[1] ""
"utilize até %(tag_count)d tags ou menos"
# 100%
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "Pelo menos uma das seguintes tags é obrigatória: %(tags)s"
# 100%
-#: forms.py:227
+#: forms.py:249
#, 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] "cada tag deve ter menos de %(max_chars)d caractere"
msgstr[1] "cada tag deve ter menos de %(max_chars)d caracteres"
-#: forms.py:235
-#, fuzzy
-msgid "use-these-chars-in-tags"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
-"use-estes-caracteres-nas-tags\n"
-"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
-"utilize-estes-caracteres-nas-tags"
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
"wiki comunitária (karma não é concedido e muitos outros podem editar a wiki)"
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -143,11 +148,11 @@ msgstr ""
"se você escolher a opção de wiki comunitária, a pergunta e a resposta não "
"geram pontos e o nome do autor não será mostrado"
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "atualizar resumo:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -155,44 +160,44 @@ msgstr ""
"insira um breve resumo de sua revisão (por exemplo, correção de ortografia, "
"gramática, melhorou estilo, este campo é opcional)"
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Digite o número de pontos para adicionar ou subtrair"
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "aprovado"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "assistido"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "suspenso"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "bloqueado"
# 100%
-#: forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr "administrador"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "moderador"
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr "Mudar status para"
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "qual?"
-#: forms.py:452
+#: forms.py:474
#, fuzzy
msgid "Cannot change own status"
msgstr ""
@@ -201,19 +206,19 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"Não é possível alterar o próprio estado"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "Não é possível tornar outro usuário moderador"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "Não é possível alterar o status de outro moderador"
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "Não é possível alterar o status para administrador"
-#: forms.py:477
+#: forms.py:499
#, fuzzy, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -226,24 +231,24 @@ msgstr ""
"Se desejar mudar o status de %(username), por favor, faça uma seleção "
"significativa."
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Linha de assunto"
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "Texto da mensagem"
-#: forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr "Seu nome (opcional):"
# 100%
-#: forms.py:580
+#: forms.py:531
msgid "Email:"
msgstr "Email:"
-#: forms.py:582
+#: forms.py:533
#, fuzzy
msgid "Your message:"
msgstr ""
@@ -253,20 +258,20 @@ msgstr ""
"Sua mensagem:"
# 100%
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "Não quero fornecer meu e-mail ou receber uma resposta:"
# 100%
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr "Marque o campo \"Não quero fornecer meu e-mail\"."
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr "perguntar anonimamente"
-#: forms.py:650
+#: forms.py:601
#, fuzzy
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
@@ -275,7 +280,12 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"Marque se não quer revelar seu nome ao fazer esta pergunta"
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
#, fuzzy
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
@@ -288,11 +298,11 @@ msgstr ""
"Você fez essa pergunta de forma anônima, se decidir revelar sua identidade, "
"por favor, marque esta caixa."
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr "revelar a identidade"
-#: forms.py:872
+#: forms.py:831
#, fuzzy
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
@@ -305,7 +315,7 @@ msgstr ""
"Desculpe, apenas o proprietário da questão anônima pode revelar sua "
"identidade, por favor desmarque a caixa"
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -315,43 +325,39 @@ msgstr ""
"forma anônima. Por favor, marque a caixa \"revelar a identidade\" ou "
"recarregue esta página e tente editar novamente a questão."
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr "este e-mail será ligado ao gravatar"
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Nome real"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "Site"
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr "Cidade"
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr "Mostrar país"
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Data de nascimento"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "não será mostrado, usado para calcular a idade formato: AAAA-MM-DD"
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "Perfil"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Apelido"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
#, fuzzy
msgid "this email has already been registered, please use another one"
msgstr ""
@@ -361,23 +367,23 @@ msgstr ""
"este e-mail já foi registrado, utilize outro"
# 100%
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Escolha o filtro de tags de e-mail"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "Perguntada(s) por mim"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "Respondida(s) por mim"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Selecionados individualmente"
-#: forms.py:1069
+#: forms.py:1027
#, fuzzy
msgid "Entire forum (tag filtered)"
msgstr ""
@@ -386,19 +392,11 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"Fórum inteiro (filtrada por tag)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Comentários e posts me mencionando"
-#: forms.py:1152
-msgid "okay, let's try!"
-msgstr "ok, vamos tentar!"
-
-#: forms.py:1153
-msgid "no community email please, thanks"
-msgstr "não envie e-mails, obrigado(a)"
-
-#: forms.py:1157
+#: forms.py:1112
#, fuzzy
msgid "please choose one of the options above"
msgstr ""
@@ -407,7 +405,33 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"escolha uma das opções acima"
-#: urls.py:52
+#: forms.py:1115
+msgid "okay, let's try!"
+msgstr "ok, vamos tentar!"
+
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
+msgstr "não envie e-mails, obrigado(a)"
+
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
+#: urls.py:41
#, fuzzy
msgid "about/"
msgstr ""
@@ -416,7 +440,7 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"sobre/"
-#: urls.py:53
+#: urls.py:42
#, fuzzy
msgid "faq/"
msgstr ""
@@ -425,7 +449,7 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"faq/"
-#: urls.py:54
+#: urls.py:43
#, fuzzy
msgid "privacy/"
msgstr ""
@@ -434,7 +458,11 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"privacidade/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
#, fuzzy
msgid "answers/"
msgstr ""
@@ -443,7 +471,7 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"respostas/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
#, fuzzy
msgid "edit/"
msgstr ""
@@ -452,7 +480,7 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"editar/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
#, fuzzy
msgid "revisions/"
msgstr ""
@@ -461,10 +489,13 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"revisões/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+#, fuzzy
+msgid "questions"
+msgstr "perguntas /"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
#, fuzzy
msgid "questions/"
msgstr ""
@@ -473,7 +504,7 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"perguntas/"
-#: urls.py:77
+#: urls.py:82
#, fuzzy
msgid "ask/"
msgstr ""
@@ -482,7 +513,7 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"perguntar/"
-#: urls.py:87
+#: urls.py:92
#, fuzzy
msgid "retag/"
msgstr ""
@@ -491,7 +522,7 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"alterar tag/"
-#: urls.py:92
+#: urls.py:97
#, fuzzy
msgid "close/"
msgstr ""
@@ -500,7 +531,7 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"fechar/"
-#: urls.py:97
+#: urls.py:102
#, fuzzy
msgid "reopen/"
msgstr ""
@@ -509,54 +540,52 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"reabrir/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "responder/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "votar/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr "widgets/"
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "tags/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "inscrever-por-tags/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "usuários/"
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr "inscrições/"
# 100%
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr "usuários/update_has_custom_avatar/"
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "insígnias/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "mensagens/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "marcar como lida/"
-#: urls.py:257
+#: urls.py:262
#, fuzzy
msgid "upload/"
msgstr ""
@@ -565,18 +594,15 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"gravar/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "feedback/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "perguntar/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "conta/"
@@ -776,29 +802,35 @@ msgstr ""
# 100%
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Configuração de e-mail e de alertas de e-mail"
+
+# 100%
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Número máximo de novas entradas em um e-mail de alerta"
# 100%
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr "Frequência padrão de notificação de todas as perguntas"
# 100%
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
"Opção para definir a frequência dos e-mails de atualização: todas as "
"perguntas."
# 100%
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr "Frequência padrão de notificação de perguntas feitas pelo usuário"
# 100%
# 78%
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
@@ -807,13 +839,13 @@ msgstr ""
"pelo usuário."
# 100%
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr "Frequência padrão de notificação de perguntas respondidas pelo usuário"
# 100%
# 78%
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
@@ -821,7 +853,7 @@ msgstr ""
"Opção para definir a frequência dos e-mails de atualização para : Perguntas "
"respondidas pelo usuário."
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
@@ -829,7 +861,7 @@ msgstr ""
"Frequência padrão de notificação de perguntas selecionadas individualmente "
"pelo usuário"
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
@@ -837,7 +869,7 @@ msgstr ""
"Opção para definir a frequência de e-mails de atualização para: Perguntas "
"selecionadas individualmente pelo usuário."
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
@@ -845,7 +877,7 @@ msgstr "Frequência padrão de notificação para menções e comentários"
# 100%
# 75%
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
@@ -853,11 +885,11 @@ msgstr ""
"comentários"
# 100%
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr "Enviar lembretes periódicos sobre perguntas sem respostas"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
@@ -868,11 +900,11 @@ msgstr ""
"através de um cron job - com uma frequência apropriada)"
# 100%
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr "Dias antes de começar a mandar lembretes sobre perguntas sem respostas"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
@@ -881,16 +913,16 @@ msgstr ""
"lembretes enviados)."
# 100%
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr "Número máximo de lembretes a enviar sobre perguntas sem respostas"
# 100%
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr "Enviar lembretes periódicos para aceitar a melhor resposta"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
@@ -901,11 +933,11 @@ msgstr ""
"através de um cron job - com uma frequência apropriada)"
# 100%
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr "Dias antes de começar a enviar lembretes para aceitar uma resposta"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
@@ -914,16 +946,16 @@ msgstr ""
"lembretes enviados)."
# 100%
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr "Número máximo de lembretes a enviar sobre aceitar a melhor resposta"
# 100%
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr "Pedir para a verificar o e-mail antes de autorizar a postar"
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
@@ -931,27 +963,27 @@ msgstr ""
"dentro do e-mail"
# 100%
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr "Permitir somente uma conta por endereço de e-mail"
# 100%
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr "E-mail falso para usuário anônimo"
# 100%
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
"Utilize esta configuração para controlar o gravatar para usuários sem e-mail"
# 100%
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr "Permitir postar perguntas por e-mail"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
@@ -960,11 +992,11 @@ msgstr ""
"arquivo settings.py"
# 100%
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr "Substituir espaços em tags de e-mail por travessões"
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
@@ -973,6 +1005,26 @@ msgstr ""
"feitas por e-mail"
# 100%
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "Permitir postar perguntas por e-mail"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
+# 100%
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr "Chaves para serviços externos"
@@ -1012,16 +1064,16 @@ msgid "Enable recaptcha (keys below are required)"
msgstr "Permitir recaptcha (as chaves abaixo são necessárias)"
# 100%
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr "Chave pública recaptcha"
# 100%
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr "Chave privativa recaptcha"
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -1033,11 +1085,11 @@ msgstr ""
"%(url)s</a>"
# 100%
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr "Chave do Facebook public API"
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -1049,16 +1101,16 @@ msgstr ""
"\"%(url)s\">facebook create app</a> "
# 100%
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Chave secreta Facebook"
# 100%
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr "Chave Twitter consumer"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
@@ -1067,16 +1119,16 @@ msgstr ""
"Registre seu fórum no <a href=\"%(url)s\">site de aplicações do Twitter</a>"
# 100%
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr "Chave secreta Twitter consumer"
# 100%
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr "Chave LinkedIn consumer"
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
@@ -1085,16 +1137,16 @@ msgstr ""
"LinkedIn</a>"
# 100%
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr "Chave secreta LinkedIn consumer"
# 100%
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr "Chave ident.ca consumer"
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
@@ -1103,31 +1155,11 @@ msgstr ""
"Registre seu fórum no <a href=\"%(url)s\">site de aplicações do ident.ca</a>"
# 100%
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr "Chave secreta ident.ca consumer"
# 100%
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr "Utilizar autenticação LDAP para o login com senha"
-
-# 100%
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr "Nome do provedor de serviços do LDAP"
-
-# 100%
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr "URL do provedor de serviços de LDAP"
-
-# 100%
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr "Explique como mudar a senha no LDAP"
-
-# 100%
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "Páginas modelos - sobre, privacidade, politicas, etc."
@@ -1180,11 +1212,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr "Entrada de datas e regras de exibição"
-#: conf/forum_data_rules.py:22
-#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
+#, fuzzy, python-format
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
"Permitir incorporar vídeos. <em>Nota: leia <a href=\"%(url)s>isto aqui</a> "
"primeiro.</em>"
@@ -1262,12 +1296,17 @@ msgstr "Tamanho mínimo do corpo da pergunta (em quantidade de caracteres)"
msgid "Minimum length of answer body (number of characters)"
msgstr "Tamanho mínimo do corpo da resposta (em quantidade de caracteres)"
-# 100%
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "tags são necessárias"
+
+# 100%
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr "Tags obrigatórios"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
@@ -1277,11 +1316,11 @@ msgstr ""
"estiverem ativas."
# 100%
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr "Forçar caixa baixa para as tags"
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
@@ -1292,11 +1331,11 @@ msgstr ""
"code> para renomear as tags globalmente."
# 100%
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr "Formato da lista de tags"
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
@@ -1304,11 +1343,11 @@ msgstr ""
"nuvem de tags"
# 100%
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "Utilizar tags coringa"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
@@ -1317,57 +1356,57 @@ msgstr ""
"só vez. Uma tag coringa válida contém o coringa no final."
# 100%
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr "Número máximo padrão de comentários a exibir sob os posts"
# 100%
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr "Tamanho máximo dos comentários, deve ser < %(max_len)s"
# 100%
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr "Tempo limite para editar comentários"
# 100%
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr "Se desmarcado, não haverá tempo limite para editar comentários"
# 100%
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr "Nº de minutos permitidos para editar comentários"
# 100%
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr "Para ativar este recurso, marque o anterior"
# 100%
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr "Salvar comentários com a tecla <Enter> "
# 100%
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr "Tamanho mínimo do termo de busca para pesquisa Ajax"
# 100%
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr "Deve corresponder à configuração do banco de dados"
# 100%
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr "Não guardar o texto da busca na pesquisa"
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
@@ -1378,23 +1417,89 @@ msgstr ""
"não gostar do comportamento pegajoso do texto da pesquisa da consulta."
# 100%
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "Número máximo de tags por pergunta"
# 100%
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr "Número padrão de perguntas a listar"
# 100%
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "O que significaria \"pergunta sem resposta\"?"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+# 100%
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr "Utilizar autenticação LDAP para o login com senha"
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+# 100%
+#: conf/ldap.py:52
+#, fuzzy
+msgid "LDAP Server USERID field name"
+msgstr "Nome do provedor de serviços do LDAP"
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+# 100%
+#: conf/ldap.py:70
+#, fuzzy
+msgid "LDAP Server EMAIL field name"
+msgstr "Nome do provedor de serviços do LDAP"
+
+# 100%
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Barra lateral da página principal"
+
+# 100%
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "Barra lateral do perfil do usuário"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+#, fuzzy
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+"Utilize esta área para inserir conteúdo no topo da barra lateral no formato "
+"HTML. Ao utilizar esta opção (bem como o rodapé da barra lateral), utilize o "
+"serviço de validação HTML para garantir que sua entrada é válida e funciona "
+"com todos os navegadores."
+
# 100%
#: conf/license.py:13
-msgid "Content LicensContent License"
+#, fuzzy
+msgid "Content License"
msgstr "Licença LicensContent "
# 100%
@@ -1490,17 +1595,17 @@ msgstr ""
"caixa para XML-RPC"
# 100%
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr "Carregar seu ícone"
# 100%
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr "Ativar o login do %(provider)s"
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1716,6 +1821,10 @@ msgstr ""
"Quando um rastejador de um motor de busca enxergar rel=nofollow em um link - "
"o link não contará para o rank dos sites pessoais dos usuários."
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
# 100%
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
@@ -1972,33 +2081,33 @@ msgid "Short name for your Q&A forum"
msgstr "Seu nome curto para forum Perguntas e Respostas"
# 100%
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
"Base URL para seu forum Perguntas e Respostas, deve iniciar com http ou https"
# 100%
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr "Marcar para ativar saudações para usuário anônimo"
# 100%
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr "Texto mostrado na mensagem de saudação do usuário anônimo"
# 100%
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr "Use HTML para formatar a mensagem"
# 100%
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "URL do site de feedback"
# 100%
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr "Se deixado vazio, será utilizado um formulário de feedback simples"
@@ -2154,11 +2263,11 @@ msgstr ""
"formulário inteiro."
# 100%
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr "Mostrar logotipo"
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
@@ -2167,11 +2276,11 @@ msgstr ""
"de não querer que o logotipo apareça na posição padrão"
# 100%
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr "Favicon do site"
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -2183,11 +2292,11 @@ msgstr ""
"href=\"%(favicon_info_url)s\">nesta página</a>."
# 100%
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr "Botão senha de login"
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
@@ -2196,12 +2305,12 @@ msgstr ""
"do login."
# 100%
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
"Mostrar todas as funções da Interface do Usuário para todos os usuários"
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
msgid ""
"If checked, all forum functions will be shown to users, regardless of their "
"reputation. However to use those functions, moderation rules, reputation and "
@@ -2212,21 +2321,21 @@ msgstr ""
"as regras de moderação, reputação e outros limites ainda serão aplicadas."
# 100%
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr "Selecione o skin"
# 100%
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr "Personalizar o <HEAD> em HTML"
# 100%
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr "Parte personalizada do <HEAD> HTML"
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -2247,11 +2356,11 @@ msgstr ""
"esta configuração, teste o site com o validador W3C HTML."
# 100%
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr "Adições personalizadas do cabeçalho"
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -2266,11 +2375,11 @@ msgstr ""
"validação do HTML e garanta que seu conteúdo é válido para todos os browsers."
# 100%
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr "Modo rodapé do site"
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
@@ -2279,11 +2388,11 @@ msgstr ""
"Você pode desativar, personalizar, ou utilizar um rodapé padrão."
# 100%
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr "Rodapé personalizado (formato HTML)"
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -2298,11 +2407,11 @@ msgstr ""
"seu site funcione com todos os navegadores."
# 100%
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr "Aplicar folha de estilo personalizado (CSS)"
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
@@ -2311,11 +2420,11 @@ msgstr ""
"folhas de estilo personalizadas (veja o próximo item)"
# 100%
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr "Folha de estilo personalizado (CSS)"
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -2331,22 +2440,22 @@ msgstr ""
"vazio) da configuração da url em seu urls.py."
# 100%
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr "Adicionar javascript personalizado"
# 100%
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
"Verifique para ativar o javascript que você pode entrar no campo ao lado"
# 100%
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr "Javascript personalizado"
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -2364,23 +2473,23 @@ msgstr ""
"marque a opção \"Adicionar javascript personalizado\" acima)."
# 100%
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr "Número de revisão da mídia de skin"
# 100%
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
"Será definido automaticamente, mas você pode modificá-lo se necessário."
# 100%
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr "Hash para atualizar o número de revisão de mídia automaticamente."
# 100%
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr "Será definido automaticamente, não é necessário modificar manualmente."
@@ -2462,36 +2571,70 @@ msgstr "Serviços externos"
msgid "Login, Users & Communication"
msgstr "Login, Usuários e Comunicação"
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
msgid "User settings"
msgstr "Configurações do usuário"
# 100%
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr "Permitir edição do nome de tela do usuário"
# 100%
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "Permitir somente uma conta por endereço de e-mail"
+
+# 100%
+#: conf/user_settings.py:41
msgid "Allow account recovery by email"
msgstr "Permitir a recuperação de conta por e-mail"
# 100%
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr "Permitir adicionar e remover métodos de login"
# 100%
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr "Tamanho mínimo permitido para o nome de tela"
# 100%
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+#, fuzzy
+msgid "Default avatar for users"
+msgstr "Ícone padrão tipo Gravatar"
+
+# 100%
+#: conf/user_settings.py:70
+#, fuzzy
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+"Para alterar o logotipo, selecione o novo arquivo, então submeta este "
+"formulário inteiro."
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+# 100%
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr "Ícone padrão tipo Gravatar"
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
@@ -2502,7 +2645,7 @@ msgstr ""
"href=\"http://en.gravatar.com/site/implement/images/\">esta página</a>."
# 100%
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr "Nome para o usuário anônimo"
@@ -2634,404 +2777,415 @@ msgid "too localized"
msgstr "também localizada"
# 100%
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "mais recente"
# 100%
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "mais antiga"
# 100%
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "ativo"
# 100%
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "inativo"
# 100%
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "mais quente"
# 100%
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "mais frio"
# 100%
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "mais votado"
# 100%
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "menos votado"
# 100%
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "relevância"
# 100%
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "todos"
# 100%
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "sem resposta"
# 100%
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "favorito"
# 100%
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr "lista"
# 100%
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr "nuvem"
# 100%
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "Pergunta não tem respostas"
# 100%
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "Pergunta não tem respostas aceita"
# 100%
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr "perguntou"
# 100%
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr "respondeu uma questão"
# 100%
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "pergunta comentada"
# 100%
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "resposta comentada"
# 100%
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "pergunta editada"
# 100%
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "resposta editada"
# 100%
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "prêmio recebido"
# 100%
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "marcado a melhor resposta"
# 100%
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "votado"
# 100%
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "não votado"
# 100%
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "voto cancelado"
# 100%
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "pergunta excluída"
# 100%
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "resposta excluída"
# 100%
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "ofenciva marcada"
# 100%
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "etiquetas atualizadas"
# 100%
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "favorito selecionado"
# 100%
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "perfil de usuário completado"
# 100%
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "atualizar e-mail enviado para o usuário"
# 100%
-#: const/__init__.py:142
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr "lembrete sobre perguntas sem resposta enviado"
# 100%
-#: const/__init__.py:146
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr "lembrete sobre aceitar a melhor resposta enviada"
# 100%
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "mencionado no post"
# 100%
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "pergunta respondida"
-
-# 100%
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "pergunta comentada"
-
-# 100%
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr "resposta comentada"
+#: const/__init__.py:202
+#, fuzzy
+msgid "answered question"
+msgstr "respondeu uma questão"
# 100%
-#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr "resposta aceita"
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "resposta editada"
# 100%
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[fechado]"
# 100%
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[excluído]"
# 100%
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "versão inicial"
# 100%
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "arrumei"
# 100%
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr "fora"
# 100%
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "exclusáo ignorada"
# 100%
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr "selecionado apenas"
# 100%
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "imediatamente"
# 100%
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "diário"
# 100%
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "semanal"
# 100%
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "nenhum e-mail"
# 100%
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr "identificador"
# 100%
-#: const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr "mistério do homem"
# 100%
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr "id mostro"
# 100%
-#: const/__init__.py:236
+#: const/__init__.py:239
msgid "wavatar"
msgstr "wavatar"
# 100%
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr "de volta"
# 100%
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "ouro"
# 100%
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "prata"
# 100%
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "bronze"
# 100%
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr "nenhum"
# 100%
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr "Gravatar"
# 100%
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr "Avatar enviado"
# 100%
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr "perguntas mais relevantes"
# 100%
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr "clique para ver perguntas mais relevantes"
# 100%
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "por relevância"
# 100%
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "clique para ver as perguntas antigas"
# 100%
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "por data"
# 100%
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "clique para ver as perguntas mais recentes"
# 100%
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "clique para ver as perguntas menos atualizadas recentemente"
# 100%
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "por atividade"
# 100%
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "clique para ver as perguntas mais atualizadas recentemente"
# 100%
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr "clique para ver as perguntas menos respondidas"
# 100%
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "por respostas"
# 100%
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr "clique para ver as perguntas mais respondidas"
# 100%
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "clique para ver as perguntas menos votadas"
# 100%
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "por votos"
# 100%
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "clique para ver as perguntas mais votadas"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
# 100%
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr "Os nomes não são suportados"
@@ -3090,12 +3244,13 @@ msgstr "Seu nome de usuário(<i>required</i>)"
# 100%
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Nome de usuário incorreto."
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "desculpe, não há usuário com este nome"
# 100%
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "entrar/"
@@ -3141,7 +3296,7 @@ msgstr "%(site)s nome de usuário e senha"
# 100%
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "Criar uma conta protegida por senha"
@@ -3243,13 +3398,13 @@ msgid "Sign in with your %(provider)s account"
msgstr "Entre com sua %(provider)s conta"
# 100%
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "AbriID %(openid_url)s é inválido"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
@@ -3257,78 +3412,78 @@ msgid ""
msgstr ""
# 100%
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr "Sua nova senha foi salva"
# 100%
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr "a combinação de senha e login não estão corretos"
# 100%
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr "Por favor, clique em qualquer ícone abaixo para entrar no"
# 100%
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr "E-mail de recuperação de conta enviado"
# 100%
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr "Por favor, adicione um ou mais métodos de login"
# 100%
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
"Se você quiser, por favor adicionar, remover ou revalidar seus métodos de "
"login"
# 100%
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr "Por favor, espere um segundo! Sua conta está recuperada, mas..."
# 100%
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr "Desculpe, esta chave de recuperação de conta expirou ou é inválida"
# 100%
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr "Método de login %(provider_name)s não existe"
# 100%
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr "Oops, desculpe - houve algum erro - por favor tente novamente"
# 100%
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr "Seu %(provider)s login funciona bem"
# 100%
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr "Seu e-mail precisa ser validado, veja %(details_url)s"
# 100%
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr "Recuperar sua %(site)s conta"
# 100%
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr "Por favor verifique seu e-mail e visite o link em anexo"
@@ -3338,33 +3493,33 @@ msgid "Site"
msgstr "site"
# 100%
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr "Principal"
# 100%
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "Configurações de base"
# 100%
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Valor padrão:\"\""
# 100%
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Valor padrão:"
# 100%
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Valor padrão: %s"
# 100%
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr "Permitidos tipos de arquivo imagem são %(types)s "
@@ -3382,7 +3537,7 @@ msgstr "Documentação"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Alterar senha"
@@ -3446,155 +3601,58 @@ msgstr "Desmembrar todos"
msgid "Congratulations, you are now an Administrator"
msgstr "Parabéns, você é agora um Administrador"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-"Este comando pode ajuda-lo a migrar para a autenticação de senha no LDAP ao "
-"criar um registro para a associação LDAP para cada conta de usuário. Assume-"
-"se que o id de usuário do LDAP é o menos que o nome de usuário registrado no "
-"site. Antes de executar este comando é necessário definir os parâmetros LDAP "
-"na seção \"Chaves externas\" das configurações do site."
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-"<p>Para perguntar por e-mail:</p>\n"
-"<ul>\n"
-" <li>Formate a linha de assunto como: [Tag1; Tag2] Título da Pergunta</"
-"li>\n"
-" <li>digite os detalhes de sua pergunta no corpo do e-mail</li>\n"
-"</ul>\n"
-"<p>Note que as tags podem ter mais de uma palavra, e as tags\n"
-"podem estar separadas por ponto-e-vírgula ou vírgula</p>\n"
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-"<p>Ocorreu um problema ao postar sua pergunta. Contate o administrador do "
-"site %(site)s</p>"
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-"<p>Para postar perguntas no site %(site)s por email, <a href=\"%(url)s"
-"\">registre-se primeiro</a></p>"
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-"<p>Sua pergunta não pode ser postada por insuficiência de privilégios da sua "
-"conta de usuário</p>"
-
# 100%
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr "Aceitar a melhor resposta para %(question_count)d das suas perguntas"
# 100%
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr "Por favor, aceite a melhor resposta para esta pergunta:"
# 100%
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr "Por favor, aceite a melhor resposta para estas perguntas:"
# 100%
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] "%(question_count)d pergunta atualizada sobre %(topics)s"
msgstr[1] "%(question_count)d perguntas atualizadas sobre %(topics)s"
-# 100%
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
-"%(name)s, esta é uma atualização para o cabeçalho da mensagem para %(num)d "
-"pergunta"
msgstr[1] ""
-"%(name)s, esta é uma atualização para o cabeçalho das mensagens para %(num)d "
-"perguntas"
# 100%
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "nova pergunta"
-#: 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 ""
-"Visite o askbot e veja as novidades! Que tal você nos ajudar a divulgá-lo? "
-"Alguém de seu relacionamento poderia ajudar a responder essas perguntas ou "
-"aproveitar uma das respostas?"
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-"Sua configuração de assinatura mais frequente é \"diário\" nas perguntas "
-"selecionadas. Se estiver recebendo mais de um e-mail por dia, contate-nos "
-"relatando o fato para o administrador do askbot."
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-"Sua configuração de assinatura mais frequente é \"semanal\". Se estiver "
-"recebendo mais de um e-mail por semana, contate-nos relatando o fato para o "
-"administrador do askbot."
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-"Há uma chance que esteja recebendo links já visitados - devido a um assunto "
-"técnico que pode eventualmente desaparecer."
-
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-"vá para %(email_settings_link)s para alterar a frequência das atualizações "
-"de e-mail ou %(admin_email)s administrador"
# 100%
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -3606,7 +3664,7 @@ msgstr[1] "%(question_count)d não respondidas perguntas sobre %(topics)s"
msgid "Please log in to use %s"
msgstr "Faça login para utilizar %s"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
@@ -3614,7 +3672,7 @@ msgstr ""
"Você não pode aceitar ou recusar melhores respostas por que sua conta está "
"bloqueada"
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
@@ -3622,7 +3680,7 @@ msgstr ""
"Você não pode aceitar ou recusar melhores respostas por que sua conta está "
"suspensa"
-#: models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
@@ -3631,13 +3689,13 @@ msgstr ""
">%(points)s pontos são necessários para aceitar ou recusar sua própria "
"resposta a sua pergunta"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr "Você poderá aceitar esta resposta somente após %(will_be_able_at)s"
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
@@ -3647,61 +3705,49 @@ msgstr ""
"aceitar ou recusar a melhor resposta"
# 100%
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "não é possível votar em posts próprios"
# 100%
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "Sua conta parece estar bloqueada"
# 100%
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "Sua conta parece estar suspensa"
# 100%
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ">%(points)s pontos requeridos para voto a favor"
# 100%
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ">%(points)s pontos requeridos para voto contrário"
# 100%
-#: models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "Usuários bloqueados não podem fazer upload de arquivos"
# 100%
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr "Usuários suspensos não podem fazer upload de arquivos"
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"a gravação de imagens é limitada a usuários com >%(min_rep)s pontos de "
-"reputação"
-
-# 100%
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr "usuários bloqueados não podem postar"
-# 100%
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr "usuários suspensos não podem postar"
-
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3717,18 +3763,18 @@ msgstr[1] ""
"%(minutes)s minutos da postagem"
# 100%
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr "Somente o dono da mensagem ou moderadores podem editar comentários"
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
"Por estar com a conta suspensa, você só poderá comentar suas próprias "
"postagens"
-#: models/__init__.py:510
+#: models/__init__.py:523
#, python-format
msgid ""
"Sorry, to comment any post a minimum reputation of %(min_rep)s points is "
@@ -3738,7 +3784,7 @@ msgstr ""
"pontos de reputação. Você ainda pode comentar suas próprias postagens e "
"respostas a suas perguntas"
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
@@ -3746,7 +3792,7 @@ msgstr ""
"Este post foi excluído e só pode ser visto pelo proprietário, administrador "
"do site e moderadores."
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
@@ -3755,18 +3801,18 @@ msgstr ""
"editar posts excluídos"
# 100%
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
"Por estar com a conta bloqueada, você só poderá editar suas próprias "
"postagens"
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
"Por estar com a conta suspensa, você só poderá editar suas próprias postagens"
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
@@ -3774,7 +3820,7 @@ msgstr ""
"Para editar postagens do wiki, é necessário um mínimo de %(min_rep)s pontos "
"de reputação."
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
@@ -3783,7 +3829,7 @@ msgstr ""
"Para editar postagens de outras pessoas, é necessário um mínimo de "
"%(min_rep)s pontos de reputação."
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3794,16 +3840,16 @@ msgstr[0] ""
msgstr[1] ""
# 100%
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr "Desculpe, já que sua conta está bloqueada, você não pode excluir posts"
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
@@ -3811,162 +3857,169 @@ msgid ""
msgstr ""
# 100%
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
"Desculpe, já que sua conta está bloqueado, você não pode fechar perguntas"
# 100%
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
"Desculpe, já que sua conta está suspensa, você não pode fechar perguntas"
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-# 100%
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "não pode sinalizar mensagem como ofensiva duas vezes"
-
-# 100%
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
-msgstr "usuários bloqueados não podem sinalizar posts"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
+msgstr ""
# 100%
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
-msgstr "usuários suspensos não podem sinalizar posts"
+#: models/__init__.py:783
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr "Desculpe, já que sua conta está bloqueada, você não pode excluir posts"
-# 100%
-#: models/__init__.py:768
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr "necessita > %(min_rep)s pontos para sinalizar spam"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
+msgstr ""
+"Para editar postagens do wiki, é necessário um mínimo de %(min_rep)s pontos "
+"de reputação."
-# 100%
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "%(max_flags_per_day)s excedido"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
-msgid "blocked users cannot remove flags"
-msgstr ""
+# 100%
+#: models/__init__.py:833
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr "Desculpe, já que sua conta está bloqueada, você não pode excluir posts"
-#: models/__init__.py:805
-msgid "suspended users cannot remove flags"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
msgstr ""
-#: models/__init__.py:809
-#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+#: models/__init__.py:843
+#, fuzzy, python-format
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
+"Para editar postagens do wiki, é necessário um mínimo de %(min_rep)s pontos "
+"de reputação."
msgstr[1] ""
+"Para editar postagens do wiki, é necessário um mínimo de %(min_rep)s pontos "
+"de reputação."
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
# 100%
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
"Desculpe, já que sua conta está bloqueada, você não pode reetiquetar "
"perguntas"
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
# 100%
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
"Desculpe, já que sua conta está bloqueada, você não pode excluir comentário"
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
# 100%
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
"Desculpe, para excluir comentários, reputação de %(min_rep)s é requerido"
-# 100%
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "não pode revogar voto antigo"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
# 100%
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "em %(date)s"
# 100%
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr "em dois dias"
# 100%
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr "amanhã"
# 100%
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
@@ -3974,7 +4027,7 @@ msgstr[0] "em %(hr)d hora"
msgstr[1] "em %(hr)d horas"
# 100%
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
@@ -3982,14 +4035,14 @@ msgstr[0] "em %(min)d minuto"
msgstr[1] "em %(min)d minutos"
# 100%
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] "%(days)d dia"
msgstr[1] "%(days)d dias"
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
@@ -3997,53 +4050,53 @@ msgid ""
msgstr ""
# 100%
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "Anônimo"
# 100%
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Administrador do Site"
# 100%
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Moderador do Forum"
# 100%
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Usuário suspenso"
# 100%
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Usuário bloqueado"
# 100%
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Usuário registrado"
# 100%
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Usuário assistido"
# 100%
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Usuário aprovado"
# 100%
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "%(username)s Karma é %(reputation)s"
# 100%
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
@@ -4051,7 +4104,7 @@ msgstr[0] "um crachá de ouro"
msgstr[1] "%(count)d crachás de ouro"
# 100%
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
@@ -4059,7 +4112,7 @@ msgstr[0] "um crachá de prata"
msgstr[1] "%(count)d crachás de prata"
# 100%
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
@@ -4067,23 +4120,23 @@ msgstr[0] "um crachál de bronze"
msgstr[1] "%(count)d crachás de bronze"
# 100%
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s e %(item2)s"
# 100%
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr "%(user)s tem %(badges)s"
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "título"
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -4091,7 +4144,7 @@ msgid ""
msgstr ""
# 100%
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr "Sua etiqueta subscrita foi salvo, obrigado!"
@@ -4409,98 +4462,73 @@ msgid "Created a tag used by %(num)s questions"
msgstr "Criou uma etiqueta por %(num)s perguntas"
# 100%
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "Especialista"
# 100%
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "Muito ativo em uma etiqueta"
# 100%
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "Desculpe, esta pergunta foi excluída e não está mais acessível"
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
# 100%
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "Desculpe, esta resposta foi removida e não está mais acessível"
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
# 100%
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" e \"%s\""
# 100%
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr "\" e mais"
-# 100%
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s modificou a pergunta"
-
-# 100%
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr "%(people)s postaram %(new_answer_count)s novas respostas"
-
-# 100%
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s comentou a pergunta"
-
-# 100%
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s comentou as respostas"
-
-# 100%
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s comentou uma resposta"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "How to validate email and why?"
# 100%
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Alterado pelo moderador. Motivo:</em> %(reason)s"
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
@@ -4508,79 +4536,80 @@ msgid ""
msgstr ""
# 100%
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "Interessante"
# 100%
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "ignorada"
# 100%
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "Fórum inteiro"
# 100%
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Perguntas que eu fiz"
# 100%
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Perguntas que eu respondi"
# 100%
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "Perguntas selecionadas individualmente"
# 100%
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr "Menciona respostas e comentários"
# 100%
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Isistentemente"
# 100%
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Diário"
# 100%
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "Semanal"
# 100%
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "nenhum e-mail"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
#, fuzzy
msgid "(or select another login method above)"
msgstr "por favor, escolha uma das opções acima"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr ""
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
#, fuzzy
-msgid "Change email"
+msgid "Change Email"
msgstr "Mudar status para"
# #-#-#-#-# django.po (askbot) #-#-#-#-#
@@ -4595,43 +4624,40 @@ msgstr ""
"seu endereço de e-mail"
#: skins/common/templates/authopenid/changeemail.html:15
-#, fuzzy, python-format
-msgid "change %(email)s info"
-msgstr "Mudar status para"
+#, python-format
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
-#, fuzzy, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
-"<form style='margin:0;padding:0;' action='%(send_email_key_url)s'><p><span "
-"class=\"bigger strong\">How?</span> If you have just set or changed your "
-"email address - <strong>check your email and click the included link</"
-"strong>.<br>The link contains a key generated specifically for you. You can "
-"also <button style='display:inline' type='submit'><strong>get a new key</"
-"strong></button> and check your email again.</p></form><span class=\"bigger "
-"strong\">Why?</span> Email validation is required to make sure that "
-"<strong>only you can post messages</strong> on your behalf and to "
-"<strong>minimize spam</strong> posts.<br>With email you can "
-"<strong>subscribe for updates</strong> on the most interesting questions. "
-"Also, when you sign up for the first time - create a unique <a "
-"href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> personal image.</p>"
-
-#: skins/common/templates/authopenid/changeemail.html:29
-#, fuzzy
-msgid "Your new Email"
-msgstr "A sua mensagem:"
+#: skins/common/templates/authopenid/changeemail.html:19
+#, python-format
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:29
-#, fuzzy
-msgid "Your Email"
-msgstr "A sua mensagem:"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
#, fuzzy
msgid "Save Email"
msgstr "A sua mensagem:"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -4639,156 +4665,116 @@ msgstr "A sua mensagem:"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
#, fuzzy
msgid "Validate email"
msgstr "How to validate email and why?"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr ""
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "How to validate email and why?"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "moderador"
-#: skins/common/templates/authopenid/complete.html:27
-#, fuzzy, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-"<form style='margin:0;padding:0;' action='%(send_email_key_url)s'><p><span "
-"class=\"bigger strong\">How?</span> If you have just set or changed your "
-"email address - <strong>check your email and click the included link</"
-"strong>.<br>The link contains a key generated specifically for you. You can "
-"also <button style='display:inline' type='submit'><strong>get a new key</"
-"strong></button> and check your email again.</p></form><span class=\"bigger "
-"strong\">Why?</span> Email validation is required to make sure that "
-"<strong>only you can post messages</strong> on your behalf and to "
-"<strong>minimize spam</strong> posts.<br>With email you can "
-"<strong>subscribe for updates</strong> on the most interesting questions. "
-"Also, when you sign up for the first time - create a unique <a "
-"href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> personal image.</p>"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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 ""
-
-#: skins/common/templates/authopenid/complete.html:34
-#, fuzzy, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-"<form style='margin:0;padding:0;' action='%(send_email_key_url)s'><p><span "
-"class=\"bigger strong\">How?</span> If you have just set or changed your "
-"email address - <strong>check your email and click the included link</"
-"strong>.<br>The link contains a key generated specifically for you. You can "
-"also <button style='display:inline' type='submit'><strong>get a new key</"
-"strong></button> and check your email again.</p></form><span class=\"bigger "
-"strong\">Why?</span> Email validation is required to make sure that "
-"<strong>only you can post messages</strong> on your behalf and to "
-"<strong>minimize spam</strong> posts.<br>With email you can "
-"<strong>subscribe for updates</strong> on the most interesting questions. "
-"Also, when you sign up for the first time - create a unique <a "
-"href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> personal image.</p>"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, fuzzy, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr ""
-"<form style='margin:0;padding:0;' action='%(send_email_key_url)s'><p><span "
-"class=\"bigger strong\">How?</span> If you have just set or changed your "
-"email address - <strong>check your email and click the included link</"
-"strong>.<br>The link contains a key generated specifically for you. You can "
-"also <button style='display:inline' type='submit'><strong>get a new key</"
-"strong></button> and check your email again.</p></form><span class=\"bigger "
-"strong\">Why?</span> Email validation is required to make sure that "
-"<strong>only you can post messages</strong> on your behalf and to "
-"<strong>minimize spam</strong> posts.<br>With email you can "
-"<strong>subscribe for updates</strong> on the most interesting questions. "
-"Also, when you sign up for the first time - create a unique <a "
-"href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> personal image.</p>"
-
-#: skins/common/templates/authopenid/complete.html:40
-#, fuzzy
-msgid "This account already exists, please use another."
-msgstr "este e-mail já foi registrado, por favor use outro"
-
-#: skins/common/templates/authopenid/complete.html:59
+#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
-msgid "Screen name label"
-msgstr "Apelido"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr ""
+msgid "User registration"
+msgstr "moderador"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
#, fuzzy
msgid "please select one of the options above"
msgstr "por favor, escolha uma das opções acima"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:80
-#, fuzzy
-msgid "create account"
-msgstr "conta/"
-
# 100%
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -4817,9 +4803,10 @@ msgstr "últimas perguntas"
# 100%
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
"Atenciosamente,\n"
"Administrador do Forum"
@@ -4842,8 +4829,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -4885,9 +4872,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -4921,127 +4908,94 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "últimas perguntas"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
#, fuzzy
msgid "Password"
msgstr "Mudar status para"
-#: skins/common/templates/authopenid/signin.html:106
-#, fuzzy
-msgid "Login"
-msgstr "Configurar insígnias/"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "Mudar status para"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
#, fuzzy
msgid "provider"
msgstr "aprovado"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
#, fuzzy
msgid "delete"
msgstr "Mudar status para"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "últimas perguntas"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:222
-#, fuzzy
-msgid "reuse openid"
-msgstr "reabrir /"
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr ""
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr ""
-
#: skins/common/templates/authopenid/signup_with_password.html:10
#, fuzzy
msgid "Please register by clicking on any of the icons below"
@@ -5056,25 +5010,29 @@ msgid "Create login name and password"
msgstr ""
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:47
-#, fuzzy
-msgid "Create Account"
-msgstr "conta/"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr ""
@@ -5136,34 +5094,48 @@ msgstr ""
msgid "Delete These"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr ""
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "últimas perguntas"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr ""
+
+# #-#-#-#-# django.po (askbot) #-#-#-#-#
+# 75%
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
#, fuzzy
-msgid "edit"
-msgstr "editar /"
+msgid "undelete"
+msgstr ""
+"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
+"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
+"Mudar status para"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+# 100%
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "remove all flags"
-msgstr "tags"
+msgid "remove offensive flag"
+msgstr "Ver sinalizadores de teor ofensivo"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+msgid "remove flag"
+msgstr ""
+
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
@@ -5171,8 +5143,10 @@ msgstr ""
# #-#-#-#-# django.po (askbot) #-#-#-#-#
# 92%
# 100%
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
#, fuzzy
msgid "flag offensive"
msgstr ""
@@ -5180,36 +5154,22 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"Sinalizador de ataque"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-msgid "remove flag"
-msgstr ""
-
-# #-#-#-#-# django.po (askbot) #-#-#-#-#
-# 75%
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
#, fuzzy
-msgid "undelete"
-msgstr ""
-"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
-"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
-"Mudar status para"
-
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "últimas perguntas"
+msgid "edit"
+msgstr "editar /"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
-msgid "mark this answer as correct (click again to undo)"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
msgstr ""
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
+#: skins/common/templates/question/answer_vote_buttons.html:8
+msgid "mark this answer as correct (click again to undo)"
msgstr ""
#: skins/common/templates/question/closed_question_info.html:2
@@ -5226,64 +5186,71 @@ msgstr ""
#: skins/common/templates/question/question_controls.html:6
#, fuzzy
-msgid "retag"
-msgstr "alterar tags/"
-
-#: skins/common/templates/question/question_controls.html:13
-#, fuzzy
msgid "reopen"
msgstr "reabrir /"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
#, fuzzy
msgid "close"
msgstr "fechar /"
-#: skins/common/templates/widgets/edit_post.html:21
+#: skins/common/templates/question/question_controls.html:35
#, fuzzy
-msgid "one of these is required"
+msgid "retag"
+msgstr "alterar tags/"
+
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
msgstr "Campo País é necessário"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "tags"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr ""
#: skins/common/templates/widgets/related_tags.html:3
-#, fuzzy
-msgid "Related tags"
-msgstr "tags"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
#, fuzzy
msgid "Interesting tags"
msgstr "Configurar insígnias/"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
msgid "add"
msgstr ""
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
#, fuzzy
msgid "Ignored tags"
msgstr "Mudar status para"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr ""
@@ -5334,7 +5301,7 @@ msgid "back to previous page"
msgstr ""
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
#, fuzzy
msgid "see all questions"
msgstr "últimas perguntas"
@@ -5367,11 +5334,6 @@ msgstr "últimas perguntas"
msgid "see tags"
msgstr "tags"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
#, fuzzy
@@ -5406,18 +5368,20 @@ msgstr "editar /"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr ""
#: skins/default/templates/ask.html:4
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
#, fuzzy
-msgid "Ask a question"
-msgstr "perguntar/"
+msgid "Ask Your Question"
+msgstr "últimas perguntas"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr ""
@@ -5433,8 +5397,8 @@ msgid "Badge \"%(name)s\""
msgstr ""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, fuzzy, python-format
msgid "%(description)s"
msgstr "perguntas /"
@@ -5445,12 +5409,7 @@ msgid_plural "users received this badge:"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/badges.html:3
-#, fuzzy
-msgid "Badges summary"
-msgstr "atualizar resumo:"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
#, fuzzy
msgid "Badges"
msgstr "insígnias/"
@@ -5463,39 +5422,41 @@ msgstr ""
#, 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"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr ""
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr ""
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr ""
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr ""
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
#, fuzzy
msgid "Close question"
@@ -5515,11 +5476,10 @@ msgstr ""
msgid "OK to close"
msgstr "fechar /"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -5540,12 +5500,12 @@ msgstr ""
#: skins/default/templates/faq_static.html:8
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+msgid "What kinds of questions should be avoided?"
msgstr ""
#: skins/default/templates/faq_static.html:11
@@ -5560,9 +5520,10 @@ msgstr ""
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
#: skins/default/templates/faq_static.html:15
@@ -5579,19 +5540,22 @@ msgstr ""
#: skins/default/templates/faq_static.html:18
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
#: skins/default/templates/faq_static.html:20
#, fuzzy
-msgid "How does reputation system work?"
+msgid "How does karma system work?"
msgstr "karma"
#: skins/default/templates/faq_static.html:21
-#, fuzzy
-msgid "Rep system summary"
-msgstr "atualizar resumo:"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -5612,102 +5576,111 @@ msgstr ""
msgid "upvote"
msgstr "votar/"
-#: skins/default/templates/faq_static.html:37
-#, fuzzy
-msgid "use tags"
-msgstr "tags"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr ""
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
#, fuzzy
msgid "downvote"
msgstr "votar/"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "últimas perguntas"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
#, fuzzy
msgid "open and close own questions"
msgstr "últimas perguntas"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
#, fuzzy
msgid "retag other's questions"
msgstr "últimas perguntas"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
#, fuzzy
msgid "edit community wiki questions"
msgstr "últimas perguntas"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "responder/"
-#: skins/default/templates/faq_static.html:71
-msgid "\"delete any comment"
-msgstr ""
-
-#: skins/default/templates/faq_static.html:74
+# 100%
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "what is gravatar"
-msgstr "Mudar status para"
+msgid "delete any comment"
+msgstr "Deixar comentários"
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
+
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr ""
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
msgstr ""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr ""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
#, fuzzy
msgid "Still have questions?"
msgstr "últimas perguntas"
-#: skins/default/templates/faq_static.html:85
+#: skins/default/templates/faq_static.html:80
#, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
#: skins/default/templates/feedback.html:3
@@ -5768,6 +5741,68 @@ msgstr ""
"\n"
"Olá, este é um forum %(site_title)s de mensagem de retorno.\n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "mensagens/"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5866,178 +5901,159 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr ""
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr ""
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-msgid "i like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr ""
-#: skins/default/templates/macros.html:43
-msgid "i dont like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr "perguntar anonimamente"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr ""
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
#, fuzzy
msgid "answered"
msgstr "responder/"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr ""
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr ""
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr ""
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr ""
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr ""
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/default/templates/macros.html:310
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] ""
-msgstr[1] ""
-
# 100%
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "%(username)s imagem gravatar"
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "Perfil"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
#, fuzzy
msgid "previous"
msgstr "revisões /"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr ""
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
#, python-format
-msgid "page number %(num)s"
+msgid "page %(num)s"
msgstr ""
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr ""
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr ""
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, fuzzy, python-format
msgid "responses for %(username)s"
msgstr "mensagens/"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -6047,11 +6063,37 @@ msgstr ""
msgid "Questions"
msgstr "perguntas /"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
+#: skins/default/templates/question.html:110
+msgid "post a comment / <strong>some</strong> more"
+msgstr ""
+
+#: skins/default/templates/question.html:113
+msgid "see <strong>some</strong> more"
+msgstr ""
+
+# 100%
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
#, fuzzy
-msgid "Privacy policy"
-msgstr "privacidade /"
+msgid "post a comment"
+msgstr "Deixar comentários"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+#, fuzzy
+msgid "Answer Your Own Question"
+msgstr "últimas perguntas"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "oldest"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "últimas perguntas"
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
@@ -6062,8 +6104,8 @@ msgstr "perguntar/"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
#, fuzzy
-msgid "Change tags"
-msgstr "Mudar status para"
+msgid "Retag question"
+msgstr "últimas perguntas"
#: skins/default/templates/question_retag.html:21
#, fuzzy
@@ -6122,6 +6164,13 @@ msgstr "últimas perguntas"
msgid "Reopen this question"
msgstr "últimas perguntas"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
#, fuzzy
@@ -6153,17 +6202,17 @@ msgstr ""
msgid "Subscribe"
msgstr "inscrever-por-tags/"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr ""
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr ""
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
msgstr ""
@@ -6185,7 +6234,7 @@ msgstr ""
msgid "by popularity"
msgstr "most voted"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr ""
@@ -6200,9 +6249,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-#, fuzzy
-msgid "reputation"
-msgstr "karma"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -6235,7 +6285,7 @@ msgid "Nothing found."
msgstr ""
# 100%
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -6251,32 +6301,32 @@ msgstr ""
msgid "Tagged"
msgstr ""
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
#, fuzzy
msgid "Search tips:"
msgstr "respostas /"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
#, fuzzy
msgid "reset author"
msgstr "Configurar insígnias/"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
msgid " or "
msgstr ""
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
#, fuzzy
msgid "reset tags"
msgstr "Configurar insígnias/"
# #-#-#-#-# django.po (askbot) #-#-#-#-#
# 76%
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
#, fuzzy
msgid "start over"
msgstr ""
@@ -6284,16 +6334,16 @@ msgstr ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"Configurar insígnias/"
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
#, fuzzy
msgid "Search tip:"
msgstr "respostas /"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr ""
@@ -6336,21 +6386,21 @@ msgstr "Configurar insígnias/"
msgid "Please always feel free to ask your question!"
msgstr "últimas perguntas"
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr ""
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
#, fuzzy
msgid "Please, post your question!"
msgstr "últimas perguntas"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
#, fuzzy
msgid "subscribe to the questions feed"
msgstr "últimas perguntas"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -6365,7 +6415,7 @@ msgstr ""
# #-#-#-#-# django.po (askbot) #-#-#-#-#
# 96%
# 100%
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, fuzzy, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
@@ -6378,14 +6428,14 @@ msgstr[1] ""
"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
"cada tag deve ter menos de %(max_chars)d caracteres"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, fuzzy, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "por favor, use %(tag_count)d tags ou menos"
msgstr[1] "por favor, use %(tag_count)d tags ou menos"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -6395,84 +6445,74 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
msgstr[1] ""
+#: skins/default/templates/question/answer_tab_bar.html:11
+msgid "Sort by »"
+msgstr ""
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:15
-#, fuzzy
-msgid "oldest answers"
-msgstr "oldest"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:18
-#, fuzzy
-msgid "newest answers"
-msgstr "oldest"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr ""
-#: skins/default/templates/question/answer_tab_bar.html:21
-#, fuzzy
-msgid "popular answers"
-msgstr "oldest"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-#, fuzzy
-msgid "Answer Your Own Question"
-msgstr "últimas perguntas"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "últimas perguntas"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
#, fuzzy
msgid "Your answer"
msgstr "oldest"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
#, fuzzy
msgid "Be the first one to answer this question!"
msgstr "últimas perguntas"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+msgid ""
+"<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)!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:43
-#, fuzzy
-msgid "Login/Signup to Post Your Answer"
-msgstr "últimas perguntas"
-
-#: skins/default/templates/question/new_answer_form.html:48
-#, fuzzy
-msgid "Answer the question"
-msgstr "últimas perguntas"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -6490,59 +6530,59 @@ msgstr ""
msgid "email"
msgstr "A sua mensagem:"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "perguntas /"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "últimas perguntas"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "últimas perguntas"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "últimas perguntas"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "últimas perguntas"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "últimas perguntas"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr ""
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "últimas perguntas"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "inscrever-por-tags/"
@@ -6553,48 +6593,40 @@ msgstr ""
#: skins/default/templates/question/sidebar.html:48
#, fuzzy
-msgid "question asked"
-msgstr "perguntas /"
+msgid "Asked"
+msgstr "Perguntada(s) por mim"
#: skins/default/templates/question/sidebar.html:51
-#, fuzzy
-msgid "question was seen"
-msgstr "perguntas /"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr ""
+# 100%
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
-msgstr ""
+#, fuzzy
+msgid "Last updated"
+msgstr "menos votado"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
#, fuzzy
msgid "Related questions"
msgstr "últimas perguntas"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+msgid "Email me when there are any new answers"
msgstr ""
#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
-msgstr ""
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
+msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr ""
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
-msgid "once you sign in you will be able to subscribe for any updates here"
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
msgstr ""
#: skins/default/templates/user_profile/user.html:12
@@ -6639,8 +6671,12 @@ msgstr ""
msgid "Screen Name"
msgstr "Apelido"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+msgid "(cannot be changed)"
+msgstr ""
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr ""
@@ -6655,15 +6691,20 @@ msgstr "perguntas /"
msgid "Email subscription settings"
msgstr "perguntas /"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-#, fuzzy
-msgid "email subscription settings info"
-msgstr "perguntas /"
-
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
msgstr ""
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr "A sua mensagem:"
+
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
#, fuzzy
@@ -6691,14 +6732,17 @@ msgid "flagged items (%(flag_count)s)"
msgstr "por favor, use %(tag_count)d tags ou menos"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
msgid "seen"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr ""
@@ -6706,6 +6750,7 @@ msgstr ""
# 75%
# 100%
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
#, fuzzy
msgid "none"
msgstr ""
@@ -6725,6 +6770,16 @@ msgstr ""
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "tags"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "Mudar status para"
+
#: skins/default/templates/user_profile/user_info.html:36
#, fuzzy
msgid "update profile"
@@ -6740,7 +6795,7 @@ msgid "real name"
msgstr "Nome real"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+msgid "member since"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:63
@@ -6749,7 +6804,7 @@ msgstr ""
#: skins/default/templates/user_profile/user_info.html:69
#, fuzzy
-msgid "user website"
+msgid "website"
msgstr "Site"
#: skins/default/templates/user_profile/user_info.html:75
@@ -6898,19 +6953,16 @@ msgid "%(username)s's network is empty"
msgstr "Perfil"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr ""
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr ""
@@ -6933,21 +6985,17 @@ msgstr[0] ""
msgstr[1] ""
#: skins/default/templates/user_profile/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] ""
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "responder/"
+msgstr[1] "responder/"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr ""
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr ""
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6985,14 +7033,14 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] ""
msgstr[1] ""
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, 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_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "respostas /"
@@ -7003,7 +7051,7 @@ msgid "User profile"
msgstr "Perfil"
# 100%
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "comentários e respostas a outras perguntas"
@@ -7012,61 +7060,42 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+msgid "Graph of user karma"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:23
-#, fuzzy
-msgid "reputation history"
-msgstr "karma"
-
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr ""
-# #-#-#-#-# django.po (askbot) #-#-#-#-#
-# 75%
-# 100%
-#: skins/default/templates/user_profile/user_tabs.html:29
-#, fuzzy
-msgid "recent activity"
-msgstr ""
-"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
-"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
-"atividade recente do usuário"
-
# 100%
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "registro de votos do usuário"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr ""
+#: skins/default/templates/user_profile/user_votes.html:4
+#, fuzzy
+msgid "votes"
+msgstr "votar/"
# 100%
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "configuração de assinatura de e-mail"
# 100%
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr "moderar este usuário"
-#: skins/default/templates/user_profile/user_votes.html:4
-#, fuzzy
-msgid "votes"
-msgstr "votar/"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-#, fuzzy
-msgid "answer tips"
-msgstr "respostas /"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
#, fuzzy
-msgid "please make your answer relevant to this community"
+msgid "give an answer interesting to this community"
msgstr "últimas perguntas"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -7074,7 +7103,8 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+msgid "provide enough details"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:15
@@ -7090,7 +7120,7 @@ msgstr "últimas perguntas"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+msgid "Markdown basics"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -7114,11 +7144,6 @@ msgid "**bold** or __bold__"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr ""
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -7145,33 +7170,30 @@ msgstr ""
msgid "learn more about Markdown"
msgstr ""
-#: skins/default/templates/widgets/ask_button.html:2
-#, fuzzy
-msgid "ask a question"
-msgstr "últimas perguntas"
-
#: skins/default/templates/widgets/ask_form.html:6
#, fuzzy
msgid "login to post question info"
msgstr "últimas perguntas"
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-#: skins/default/templates/widgets/ask_form.html:42
-#, fuzzy
-msgid "Login/signup to post your question"
-msgstr "últimas perguntas"
-
-#: skins/default/templates/widgets/ask_form.html:44
-#, fuzzy
-msgid "Ask your question"
-msgstr "últimas perguntas"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -7188,11 +7210,16 @@ msgid "about"
msgstr "about /"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
#, fuzzy
msgid "privacy policy"
msgstr "privacidade /"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
#, fuzzy
msgid "give feedback"
msgstr "feedback/"
@@ -7216,20 +7243,11 @@ msgstr "usuários/"
msgid "badges"
msgstr "insígnias/"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-#, fuzzy
-msgid "question tips"
-msgstr "perguntas /"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
#, fuzzy
-msgid "please ask a relevant question"
+msgid "ask a question interesting to this community"
msgstr "últimas perguntas"
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr ""
-
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
msgid_plural "views"
@@ -7250,29 +7268,29 @@ msgid_plural "votes"
msgstr[0] "votar/"
msgstr[1] "votar/"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
#, fuzzy
msgid "see unanswered questions"
msgstr "últimas perguntas"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "últimas perguntas"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "últimas perguntas"
@@ -7286,28 +7304,35 @@ msgstr ""
msgid "badges:"
msgstr "insígnias/"
-#: skins/default/templates/widgets/user_navigation.html:8
+# 100%
+#: skins/default/templates/widgets/user_navigation.html:9
#, fuzzy
-msgid "logout"
-msgstr "sair /"
+msgid "sign out"
+msgstr "sair/"
-#: skins/default/templates/widgets/user_navigation.html:10
+#: skins/default/templates/widgets/user_navigation.html:12
#, fuzzy
-msgid "login"
-msgstr "Configurar insígnias/"
+msgid "Hi, there! Please sign in"
+msgstr "últimas perguntas"
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
#, fuzzy
msgid "settings"
msgstr "Configurar insígnias/"
+# #-#-#-#-# django.po (askbot) #-#-#-#-#
+# 75%
# 100%
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "não tem itens no contador"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr ""
+"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
+"#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
+"nenhum"
# 100%
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr "Oops, desculpe - houve algum erro"
@@ -7328,7 +7353,8 @@ msgstr "Este campo é obrigatório"
# 100%
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "escolha um nome de usuário"
# 100%
@@ -7367,10 +7393,9 @@ msgstr ""
msgid "please use at least some alphabetic characters in the user name"
msgstr ""
-# 100%
#: utils/forms.py:138
-msgid "your email address"
-msgstr "seu endereço de e-mail"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
# 100%
#: utils/forms.py:139
@@ -7389,19 +7414,13 @@ msgstr ""
"este e-mail já esta sendo usado por outra pessoa, por favor escolha outro"
# 100%
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "escolha a senha"
-
-# 100%
#: utils/forms.py:170
msgid "password is required"
msgstr "senha é necessária"
-# 100%
#: utils/forms.py:173
-msgid "retype password"
-msgstr "redigite a senha"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
# 100%
#: utils/forms.py:174
@@ -7414,17 +7433,17 @@ msgid "sorry, entered passwords did not match, please try again"
msgstr "desculpe, senhas digitadas não coincidem, por favor tente novamente"
# 100%
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "2 dias atrás"
# 100%
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "ontem"
# 100%
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
@@ -7432,13 +7451,58 @@ msgstr[0] "%(hr)d hora atrás"
msgstr[1] "%(hr)d horas atrás"
# 100%
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] "%(min)d minuto atrás"
msgstr[1] "%(min)d minutos atrás"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+"<p>Para perguntar por e-mail:</p>\n"
+"<ul>\n"
+" <li>Formate a linha de assunto como: [Tag1; Tag2] Título da Pergunta</"
+"li>\n"
+" <li>digite os detalhes de sua pergunta no corpo do e-mail</li>\n"
+"</ul>\n"
+"<p>Note que as tags podem ter mais de uma palavra, e as tags\n"
+"podem estar separadas por ponto-e-vírgula ou vírgula</p>\n"
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+"<p>Ocorreu um problema ao postar sua pergunta. Contate o administrador do "
+"site %(site)s</p>"
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+"<p>Para postar perguntas no site %(site)s por email, <a href=\"%(url)s"
+"\">registre-se primeiro</a></p>"
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+"<p>Sua pergunta não pode ser postada por insuficiência de privilégios da sua "
+"conta de usuário</p>"
+
# 100%
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
@@ -7455,207 +7519,223 @@ msgid "Successfully deleted the requested avatars."
msgstr "Excluídos com sucesso os avatares solicitados"
# 100%
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr "desculpe, mas usuários anônimos não podem acessar a caixa de entrada"
+
+# 100%
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "usuários anônimos não podem votar"
# 100%
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "Desculpe, você ficou sem votos para hoje"
# 100%
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Você tem %(votes_left)s votos deixado para hoje"
# 100%
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "desculpe, mas usuários anônimos não podem acessar a caixa de entrada"
-
-# 100%
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "desculpe, algo não esta certo aqui..."
# 100%
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "desculpe, mas usuários anônimos não podem aceitar respostas"
# 100%
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr ""
"subscrição salva, %(email)s necessita de validação, veja %(details_url)s"
# 100%
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "frequência de atualização de e-mail foi configurada para diária"
# 100%
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
"Subscrição de etiqueta foi cancelada (<a href=\"%(url)s\">desfazer</a>)"
# 100%
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr "Acesse para subscrever para: %(tags)s"
# 100%
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr "Acesse para votar"
# 100%
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Acesse para votar"
+
+# 100%
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "em %(date)s"
+
+# 100%
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "comentários forum Perguntas e Respostas"
# 100%
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Obrigado pelo comentário!"
# 100%
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
"Estamos ansioos para ouvir seu comentário! Por favor, dê ele da próxima "
"vez :)"
+#: views/meta.py:106
+#, fuzzy
+msgid "Privacy policy"
+msgstr "privacidade /"
+
# 100%
-#: views/readers.py:152
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s pregunta, etiquetada"
msgstr[1] "%(q_num)s preguntas, etiquetadas"
-# 100%
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d %(badge_level)s crachá"
-msgstr[1] "%(badge_count)d %(badge_level)s crachás"
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr ""
# 100%
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr "moderar usuário"
# 100%
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "perfil do usuário"
# 100%
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "visão geral do perfil do usuário"
# 100%
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "atividade recente do usuário"
# 100%
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "perfil - atividade recente"
# 100%
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "perfil - respostas"
# 100%
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "perfil - votos"
-# 100%
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "reputação do usuário na comunidade"
+#: views/users.py:701
+msgid "user karma"
+msgstr ""
# 100%
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "perfil reputação do usuário"
# 100%
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "perguntas favoritas do usuário"
# 100%
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "perfil - perguntas favoritas"
# 100%
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "alterações salvas"
# 100%
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "atualizações por email canceladas"
# 100%
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "perfil - assinaturas de e-mail"
# 100%
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr "Usuários anônimos não podem gravar arquivos"
# 100%
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "os tipos de arquivos permitidos são '%(file_types)s'"
# 100%
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "o tamanho máximo do arquivo a gravar é %(file_size)sK"
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:192
-#, fuzzy
-msgid "Please log in to ask questions"
-msgstr "últimas perguntas"
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
# 100%
-#: views/writers.py:493
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr "Faça o login para responder ás perguntas"
-#: views/writers.py:600
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -7663,11 +7743,11 @@ msgid ""
msgstr ""
# 100%
-#: views/writers.py:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr "Usuários anônimos não podem editar comentários"
-#: views/writers.py:658
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -7675,19 +7755,418 @@ msgid ""
msgstr ""
# 100%
-#: views/writers.py:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "parece que temos algumas dificuldades técnicas"
-#~ msgid "question content must be > 10 characters"
-#~ msgstr "conteúdo questão deve ser > 10 caracteres"
+#, fuzzy
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr ""
+#~ "#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
+#~ "use-estes-caracteres-nas-tags\n"
+#~ "#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
+#~ "utilize-estes-caracteres-nas-tags"
+
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "este e-mail será ligado ao gravatar"
+
+# 100%
+#~ msgid "URL for the LDAP service"
+#~ msgstr "URL do provedor de serviços de LDAP"
+
+# 100%
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Explique como mudar a senha no LDAP"
+
+# 100%
+#~ msgid "question_answered"
+#~ msgstr "pergunta respondida"
+
+# 100%
+#~ msgid "question_commented"
+#~ msgstr "pergunta comentada"
+
+# 100%
+#~ msgid "answer_commented"
+#~ msgstr "resposta comentada"
+
+# 100%
+#~ msgid "answer_accepted"
+#~ msgstr "resposta aceita"
+
+# 100%
+#~ msgid "Incorrect username."
+#~ msgstr "Nome de usuário incorreto."
+
+#~ msgid ""
+#~ "This command may help you migrate to LDAP password authentication by "
+#~ "creating a record for LDAP association with each user account. There is "
+#~ "an assumption that ldap user id's are the same as user names registered "
+#~ "at the site. Before running this command it is necessary to set up LDAP "
+#~ "parameters in the \"External keys\" section of the site settings."
+#~ msgstr ""
+#~ "Este comando pode ajuda-lo a migrar para a autenticação de senha no LDAP "
+#~ "ao criar um registro para a associação LDAP para cada conta de usuário. "
+#~ "Assume-se que o id de usuário do LDAP é o menos que o nome de usuário "
+#~ "registrado no site. Antes de executar este comando é necessário definir "
+#~ "os parâmetros LDAP na seção \"Chaves externas\" das configurações do site."
+
+# 100%
+#~ 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] ""
+#~ "%(name)s, esta é uma atualização para o cabeçalho da mensagem para "
+#~ "%(num)d pergunta"
+#~ msgstr[1] ""
+#~ "%(name)s, esta é uma atualização para o cabeçalho das mensagens para "
+#~ "%(num)d perguntas"
+
+#~ 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 ""
+#~ "Visite o askbot e veja as novidades! Que tal você nos ajudar a divulgá-"
+#~ "lo? Alguém de seu relacionamento poderia ajudar a responder essas "
+#~ "perguntas ou aproveitar uma das respostas?"
+
+#~ 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 ""
+#~ "Sua configuração de assinatura mais frequente é \"diário\" nas perguntas "
+#~ "selecionadas. Se estiver recebendo mais de um e-mail por dia, contate-nos "
+#~ "relatando o fato para o administrador do askbot."
+
+#~ 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 ""
+#~ "Sua configuração de assinatura mais frequente é \"semanal\". Se estiver "
+#~ "recebendo mais de um e-mail por semana, contate-nos relatando o fato para "
+#~ "o administrador do askbot."
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr ""
+#~ "Há uma chance que esteja recebendo links já visitados - devido a um "
+#~ "assunto técnico que pode eventualmente desaparecer."
+
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "vá para %(email_settings_link)s para alterar a frequência das "
+#~ "atualizações de e-mail ou %(admin_email)s administrador"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr ""
+#~ "a gravação de imagens é limitada a usuários com >%(min_rep)s pontos de "
+#~ "reputação"
+
+# 100%
+#~ msgid "blocked users cannot post"
+#~ msgstr "usuários bloqueados não podem postar"
+
+# 100%
+#~ msgid "suspended users cannot post"
+#~ msgstr "usuários suspensos não podem postar"
+
+# 100%
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr "não pode sinalizar mensagem como ofensiva duas vezes"
+
+# 100%
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr "usuários bloqueados não podem sinalizar posts"
+
+# 100%
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr "usuários suspensos não podem sinalizar posts"
+
+# 100%
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr "necessita > %(min_rep)s pontos para sinalizar spam"
+
+# 100%
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr "%(max_flags_per_day)s excedido"
+
+# 100%
+#~ msgid "cannot revoke old vote"
+#~ msgstr "não pode revogar voto antigo"
+
+# 100%
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s modificou a pergunta"
+
+# 100%
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr "%(people)s postaram %(new_answer_count)s novas respostas"
+
+# 100%
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s comentou a pergunta"
+
+# 100%
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s comentou as respostas"
+
+# 100%
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s comentou uma resposta"
#, fuzzy
-#~ msgid "Question tags"
+#~ msgid "change %(email)s info"
+#~ msgstr "Mudar status para"
+
+#, fuzzy
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<form style='margin:0;padding:0;' "
+#~ "action='%(send_email_key_url)s'><p><span class=\"bigger strong\">How?</"
+#~ "span> If you have just set or changed your email address - <strong>check "
+#~ "your email and click the included link</strong>.<br>The link contains a "
+#~ "key generated specifically for you. You can also <button style='display:"
+#~ "inline' type='submit'><strong>get a new key</strong></button> and check "
+#~ "your email again.</p></form><span class=\"bigger strong\">Why?</span> "
+#~ "Email validation is required to make sure that <strong>only you can post "
+#~ "messages</strong> on your behalf and to <strong>minimize spam</strong> "
+#~ "posts.<br>With email you can <strong>subscribe for updates</strong> on "
+#~ "the most interesting questions. Also, when you sign up for the first time "
+#~ "- create a unique <a href='%(gravatar_faq_url)s'><strong>gravatar</"
+#~ "strong></a> personal image.</p>"
+
+#, fuzzy
+#~ msgid "Your new Email"
+#~ msgstr "A sua mensagem:"
+
+#, fuzzy
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<form style='margin:0;padding:0;' "
+#~ "action='%(send_email_key_url)s'><p><span class=\"bigger strong\">How?</"
+#~ "span> If you have just set or changed your email address - <strong>check "
+#~ "your email and click the included link</strong>.<br>The link contains a "
+#~ "key generated specifically for you. You can also <button style='display:"
+#~ "inline' type='submit'><strong>get a new key</strong></button> and check "
+#~ "your email again.</p></form><span class=\"bigger strong\">Why?</span> "
+#~ "Email validation is required to make sure that <strong>only you can post "
+#~ "messages</strong> on your behalf and to <strong>minimize spam</strong> "
+#~ "posts.<br>With email you can <strong>subscribe for updates</strong> on "
+#~ "the most interesting questions. Also, when you sign up for the first time "
+#~ "- create a unique <a href='%(gravatar_faq_url)s'><strong>gravatar</"
+#~ "strong></a> personal image.</p>"
+
+#, fuzzy
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<form style='margin:0;padding:0;' "
+#~ "action='%(send_email_key_url)s'><p><span class=\"bigger strong\">How?</"
+#~ "span> If you have just set or changed your email address - <strong>check "
+#~ "your email and click the included link</strong>.<br>The link contains a "
+#~ "key generated specifically for you. You can also <button style='display:"
+#~ "inline' type='submit'><strong>get a new key</strong></button> and check "
+#~ "your email again.</p></form><span class=\"bigger strong\">Why?</span> "
+#~ "Email validation is required to make sure that <strong>only you can post "
+#~ "messages</strong> on your behalf and to <strong>minimize spam</strong> "
+#~ "posts.<br>With email you can <strong>subscribe for updates</strong> on "
+#~ "the most interesting questions. Also, when you sign up for the first time "
+#~ "- create a unique <a href='%(gravatar_faq_url)s'><strong>gravatar</"
+#~ "strong></a> personal image.</p>"
+
+#, fuzzy
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<form style='margin:0;padding:0;' "
+#~ "action='%(send_email_key_url)s'><p><span class=\"bigger strong\">How?</"
+#~ "span> If you have just set or changed your email address - <strong>check "
+#~ "your email and click the included link</strong>.<br>The link contains a "
+#~ "key generated specifically for you. You can also <button style='display:"
+#~ "inline' type='submit'><strong>get a new key</strong></button> and check "
+#~ "your email again.</p></form><span class=\"bigger strong\">Why?</span> "
+#~ "Email validation is required to make sure that <strong>only you can post "
+#~ "messages</strong> on your behalf and to <strong>minimize spam</strong> "
+#~ "posts.<br>With email you can <strong>subscribe for updates</strong> on "
+#~ "the most interesting questions. Also, when you sign up for the first time "
+#~ "- create a unique <a href='%(gravatar_faq_url)s'><strong>gravatar</"
+#~ "strong></a> personal image.</p>"
+
+#, fuzzy
+#~ msgid "This account already exists, please use another."
+#~ msgstr "este e-mail já foi registrado, por favor use outro"
+
+#, fuzzy
+#~ msgid "Screen name label"
+#~ msgstr "Apelido"
+
+#, fuzzy
+#~ msgid "create account"
+#~ msgstr "conta/"
+
+#, fuzzy
+#~ msgid "Login"
+#~ msgstr "Configurar insígnias/"
+
+#, fuzzy
+#~ msgid "reuse openid"
+#~ msgstr "reabrir /"
+
+#, fuzzy
+#~ msgid "Create Account"
+#~ msgstr "conta/"
+
+#, fuzzy
+#~ msgid "Related tags"
+#~ msgstr "tags"
+
+#, fuzzy
+#~ msgid "Ask a question"
+#~ msgstr "perguntar/"
+
+#, fuzzy
+#~ msgid "Badges summary"
+#~ msgstr "atualizar resumo:"
+
+#, fuzzy
+#~ msgid "Rep system summary"
+#~ msgstr "atualizar resumo:"
+
+#, fuzzy
+#~ msgid "use tags"
+#~ msgstr "tags"
+
+#, fuzzy
+#~ msgid "what is gravatar"
+#~ msgstr "Mudar status para"
+
+#, fuzzy
+#~ msgid "Change tags"
+#~ msgstr "Mudar status para"
+
+#, fuzzy
+#~ msgid "reputation"
+#~ msgstr "karma"
+
+#, fuzzy
+#~ msgid "oldest answers"
+#~ msgstr "oldest"
+
+#, fuzzy
+#~ msgid "newest answers"
+#~ msgstr "oldest"
+
+#, fuzzy
+#~ msgid "popular answers"
+#~ msgstr "oldest"
+
+#, fuzzy
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "últimas perguntas"
+
+#, fuzzy
+#~ msgid "Answer the question"
+#~ msgstr "últimas perguntas"
+
+#, fuzzy
+#~ msgid "question asked"
+#~ msgstr "perguntas /"
+
+#, fuzzy
+#~ msgid "question was seen"
+#~ msgstr "perguntas /"
+
+#, fuzzy
+#~ msgid "email subscription settings info"
+#~ msgstr "perguntas /"
+
+#, fuzzy
+#~ msgid "user website"
+#~ msgstr "Site"
+
+#, fuzzy
+#~ msgid "reputation history"
+#~ msgstr "karma"
+
+# #-#-#-#-# django.po (askbot) #-#-#-#-#
+# 75%
+# 100%
+#, fuzzy
+#~ msgid "recent activity"
+#~ msgstr ""
+#~ "#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
+#~ "#-#-#-#-# django.po (askbot) #-#-#-#-#\n"
+#~ "atividade recente do usuário"
+
+#, fuzzy
+#~ msgid "answer tips"
+#~ msgstr "respostas /"
+
+#, fuzzy
+#~ msgid "ask a question"
+#~ msgstr "últimas perguntas"
+
+#, fuzzy
+#~ msgid "Login/signup to post your question"
+#~ msgstr "últimas perguntas"
+
+#, fuzzy
+#~ msgid "question tips"
#~ msgstr "perguntas /"
#, fuzzy
-#~ msgid "questions"
+#~ msgid "please ask a relevant question"
+#~ msgstr "últimas perguntas"
+
+#, fuzzy
+#~ msgid "logout"
+#~ msgstr "sair /"
+
+#, fuzzy
+#~ msgid "login"
+#~ msgstr "Configurar insígnias/"
+
+# 100%
+#~ msgid "no items in counter"
+#~ msgstr "não tem itens no contador"
+
+# 100%
+#~ msgid "your email address"
+#~ msgstr "seu endereço de e-mail"
+
+# 100%
+#~ msgid "choose password"
+#~ msgstr "escolha a senha"
+
+# 100%
+#~ msgid "retype password"
+#~ msgstr "redigite a senha"
+
+# 100%
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d %(badge_level)s crachá"
+#~ msgstr[1] "%(badge_count)d %(badge_level)s crachás"
+
+# 100%
+#~ msgid "user reputation in the community"
+#~ msgstr "reputação do usuário na comunidade"
+
+#, fuzzy
+#~ msgid "Please log in to ask questions"
+#~ msgstr "últimas perguntas"
+
+#~ msgid "question content must be > 10 characters"
+#~ msgstr "conteúdo questão deve ser > 10 caracteres"
+
+#, fuzzy
+#~ msgid "Question tags"
#~ msgstr "perguntas /"
#~ msgid "Email (not shared with anyone):"
diff --git a/askbot/locale/pt_BR/LC_MESSAGES/djangojs.po b/askbot/locale/pt_BR/LC_MESSAGES/djangojs.po
index 7c41f77d..cadb90a3 100644
--- a/askbot/locale/pt_BR/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/pt_BR/LC_MESSAGES/djangojs.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:53-0500\n"
"PO-Revision-Date: 2012-02-08 10:19-0200\n"
"Last-Translator: Olivier Hallot\n"
"Language-Team: Brazilian Portuguese <kde-i18n-doc@kde.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
# 100%
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr "Tem certeza que deseja remover seu %s login?"
@@ -41,45 +41,45 @@ msgid "passwords do not match"
msgstr "as senhas não coincidem"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr "Mostrar/alterar os métodos de login atual"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr "Por favor digite seu %s, então prossiga"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr "Conecte sua conta %(provider_name)s ao %(site)s"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr "Altere sua %s senha"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr "Alterar senha"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr "Criar uma senha para %s"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr "Criar senha"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr "Criar uma conta protegida por senha"
@@ -89,178 +89,94 @@ msgid "loading..."
msgstr "carregando..."
# 100%
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "as tags não podem ser vazias"
-
-# 100%
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "o conteúdo não pode ser vazio"
-
-# 100%
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "%s conteúdo minchars"
-
-# 100%
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "Digite o título"
-
-# 100%
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "%s título minchars"
-
-# 100%
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "privilégio insuficiente"
# 100%
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "não é possível pegar a própria resposta como melhor"
# 100%
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "faça o login"
# 100%
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr "usuários anônimos não podem seguir perguntas"
# 100%
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr "usuários anônimos não podem se inscrever para perguntas"
# 100%
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "usuários anônimos não podem votar"
# 100%
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr "Confirme o teor ofensivo"
# 100%
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr "Confirme o teor ofensivo"
+
+# 100%
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "usuários anônimos não podem sinalizar posts ofensivos"
# 100%
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "confirme a exclusão"
# 100%
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "usuários anônimos não podem excluir/recuperar"
# 100%
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "post recuperado"
# 100%
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "post excluído"
# 100%
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "Seguir"
-
-# 100%
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] "%s seguidor"
-msgstr[1] "%s seguidores"
-
-# 100%
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>Seguindo</div><div class=\"unfollow\">Deixar de seguir</div>"
-
-# 100%
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "recuperar"
-
-# 100%
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "excluir"
-
-# 100%
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "adicionar comentário"
# 100%
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "salvar comentário"
# 100%
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "digite mais %s caracteres"
-
-# 100%
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "%s caracteres sobrando"
-
-# 100%
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr "cancelar"
-
-# 100%
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "confirme abandonar comentário"
-
-# 100%
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "excluir este comentário"
-
-# 100%
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "confirme excluir comentário"
-
-# 100%
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "Digite o título da pergunta (>10 caracteres)"
# 100%
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "Tags \"<span></span>\" correspondentes:"
# 100%
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "e %s a mais, ocultos..."
@@ -277,140 +193,217 @@ msgstr[0] "Excluir esta notificação?"
msgstr[1] "Excluir estas notificações?"
# 100%
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "excluir este comentário"
+msgstr[1] "excluir este comentário"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+# 100%
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "excluir este comentário"
+msgstr[1] "excluir este comentário"
+
+# 100%
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr "Faça o <a href=\"%(signin_url)s\">login</a> para seguir %(username)s"
# 100%
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "deixar de seguir %s"
# 100%
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "seguindo %s"
# 100%
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "seguir %s"
# 100%
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "clique para fechar"
# 100%
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "clique para editar este comentário"
-
-# 100%
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "editar"
-
-# 100%
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr "veja as perguntas marcadas com a tag '%s'"
-
-# 100%
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "negrito"
# 100%
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "itálico"
# 100%
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "vincular"
# 100%
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "citar"
# 100%
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "texto pré-formatado"
# 100%
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "imagem"
# 100%
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr "anexo"
# 100%
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "lista numerada"
# 100%
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "lista de marcadores"
# 100%
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "título"
# 100%
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "barra horizontal"
# 100%
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "desfazer"
# 100%
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "refazer"
# 100%
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr "insira a url da imagem"
# 100%
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr "entre com a url"
# 100%
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "gravar arquivo anexo"
# 100%
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr "descrição da imagem"
+#~ msgid "tags cannot be empty"
+#~ msgstr "as tags não podem ser vazias"
+
+# 100%
+#~ msgid "content cannot be empty"
+#~ msgstr "o conteúdo não pode ser vazio"
+
+# 100%
+#~ msgid "%s content minchars"
+#~ msgstr "%s conteúdo minchars"
+
+# 100%
+#~ msgid "please enter title"
+#~ msgstr "Digite o título"
+
+# 100%
+#~ msgid "%s title minchars"
+#~ msgstr "%s título minchars"
+
+# 100%
+#~ msgid "Follow"
+#~ msgstr "Seguir"
+
+# 100%
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] "%s seguidor"
+#~ msgstr[1] "%s seguidores"
+
+# 100%
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr "<div>Seguindo</div><div class=\"unfollow\">Deixar de seguir</div>"
+
+# 100%
+#~ msgid "undelete"
+#~ msgstr "recuperar"
+
+# 100%
+#~ msgid "delete"
+#~ msgstr "excluir"
+
+# 100%
+#~ msgid "enter %s more characters"
+#~ msgstr "digite mais %s caracteres"
+
+# 100%
+#~ msgid "%s characters left"
+#~ msgstr "%s caracteres sobrando"
+
+# 100%
+#~ msgid "cancel"
+#~ msgstr "cancelar"
+
+# 100%
+#~ msgid "confirm abandon comment"
+#~ msgstr "confirme abandonar comentário"
+
+# 100%
+#~ msgid "confirm delete comment"
+#~ msgstr "confirme excluir comentário"
+
+# 100%
+#~ msgid "click to edit this comment"
+#~ msgstr "clique para editar este comentário"
+
+# 100%
+#~ msgid "edit"
+#~ msgstr "editar"
+
+# 100%
+#~ msgid "see questions tagged '%s'"
+#~ msgstr "veja as perguntas marcadas com a tag '%s'"
+
+# 100%
+#~ msgid "image description"
+#~ msgstr "descrição da imagem"
# 100%
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr "nome do arquivo"
+#~ msgid "file name"
+#~ msgstr "nome do arquivo"
# 100%
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr "vincular texto"
+#~ msgid "link text"
+#~ msgstr "vincular texto"
diff --git a/askbot/locale/ro/LC_MESSAGES/django.po b/askbot/locale/ro/LC_MESSAGES/django.po
index 7369abd7..e5f1bd24 100644
--- a/askbot/locale/ro/LC_MESSAGES/django.po
+++ b/askbot/locale/ro/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ubuntu-ro\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:56-0500\n"
"PO-Revision-Date: 2011-04-10 19:43+0000\n"
"Last-Translator: Adi Roiban <adi@roiban.ro>\n"
"Language-Team: Romanian <ro@li.org>\n"
@@ -23,16 +23,16 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "Vizitatorii anonimi nu pot accesa această funcție"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr " - "
-#: feed.py:26
+#: feed.py:28
#, fuzzy
msgid "Individual question feed"
msgstr "Întrebări selectate individual"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "ultimele întrebări"
@@ -59,7 +59,7 @@ msgstr "titlu"
msgid "please enter a descriptive title for your question"
msgstr "introduceți un titlu descriptiv pentru întrebare"
-#: forms.py:111
+#: forms.py:113
#, fuzzy, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
@@ -67,17 +67,26 @@ msgstr[0] "titlul trebuie să fie mai lung decât 10 caractere"
msgstr[1] "titlul trebuie să fie mai lung decât 10 caractere"
msgstr[2] "titlul trebuie să fie mai lung decât 10 caractere"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "conținut"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "etichete"
-#: forms.py:168
+#: forms.py:188
#, fuzzy, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -95,11 +104,11 @@ msgstr[2] ""
"Etichetele sunt cuvinte cheie scurte, fără spații. Pot fi folosite până la "
"cinci etichete."
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "etichetele sunt obligatorii"
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
@@ -107,12 +116,12 @@ msgstr[0] "vă rugăm să folosiți %(tag_count)d etichetă sau mai puțin"
msgstr[1] "vă rugăm să folosiți %(tag_count)d etichete sau mai puțin"
msgstr[2] "vă rugăm să folosiți %(tag_count)d de etichete sau mai puțin"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:227
+#: forms.py:249
#, 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"
@@ -123,17 +132,17 @@ msgstr[1] ""
msgstr[2] ""
"fiecare etichetă trebuie să fie mai scurtă de %(max_chars)d de caractere"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "folositi-aceste-caractere-in-etichete"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
"wiki al comunității (nu se primesc puncte de reputație și mesajul poate fi "
"modificat de mai multe persoane)"
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -141,11 +150,11 @@ msgstr ""
"dacă alegeți opțiunea wiki al comunității, întrebarea și răspunsul nu vor "
"genera puncte iar numele autorului nu va fi afișat"
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "sumar actualizare:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -153,108 +162,113 @@ msgstr ""
"introduceți o descriere scurtă a reviziei (de ex. corectare ortografică, "
"gramaticală, stil îmbunătățit, câmp opțional)"
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Introduceți numărul de puncte pentru a fi adăugate sau retrase"
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "aprobat"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "urmărit"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "suspendat"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "blocat"
-#: forms.py:383
+#: forms.py:405
#, fuzzy
msgid "administrator"
msgstr "Administrator"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "moderator"
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr "Schimbă starea în"
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "care?"
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr "Nu se poate schimba propria stare"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "Nu s-a putut schimba alt utilizator în moderator"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "Nu se poate schimba starea altui utilizator"
-#: forms.py:471
+#: forms.py:493
#, fuzzy
msgid "Cannot change status to admin"
msgstr "Nu se poate schimba propria stare"
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr "Dacă doriți să modificați statusul %(username)s alegeți ceva expresiv."
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Linie subiect"
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "Text mesaj"
-#: forms.py:579
+#: forms.py:530
#, fuzzy
msgid "Your name (optional):"
msgstr "Nume:"
-#: forms.py:580
+#: forms.py:531
#, fuzzy
msgid "Email:"
msgstr "email"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "Mesaj:"
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr "întreabă anonim"
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
"Bifați în cazul în care nu doriți să dezvăluiți numele vostru când puneți "
"această întrebare"
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
@@ -262,11 +276,11 @@ msgstr ""
"Ați răspuns la această întrebare anonim, dacă decideți să vă arătați "
"identitatea, marcați această căsuță."
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr "arată identitatea"
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
@@ -274,7 +288,7 @@ msgstr ""
"Doar cel care a pus întrebarea anonimă poate dezvălui identitatea, debifați "
"căsuța"
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -284,194 +298,209 @@ msgstr ""
"rugăm să marcați căsuța „arată identitatea” sau să reîncărcați pagina pentru "
"a încerca din nou să introduceți întrebarea."
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr "această adresă de email va fi conectată cu gravatarul"
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Nume real"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "Pagină web"
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr "Oraș"
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr "Arată țara"
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Data nașterii"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
"nu va fi afișată, ci folosită doar pentru calcularea vârstei, format AAAA-LL-"
"ZZ"
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "Profil"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Nume afișat"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "acest email este deja înregistrat, utilizați altul"
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Alegeți filtru email etichete"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "Întrebate de mine"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "Răspunse de mine"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Alese individual"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Toate întrebările (filtrate pe tag)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Comentarii și răspunsuri în care sunt menționat eu"
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "alegeți una dintre opțiunile de mai sus"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "Bine, să încercăm!"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "fără emailuri de la comunitate, mulțumesc"
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "alegeți una dintre opțiunile de mai sus"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
-#: urls.py:52
+#: urls.py:41
msgid "about/"
msgstr "despre/"
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr "intrebari-frecvente/"
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "confidentialitate/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "raspunsuri/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "edit/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "revizii/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+msgid "questions"
+msgstr "întrebări"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "intrebari/"
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "intreaba/"
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr "retag/"
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "inchide/"
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "redeschide/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "raspuns/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "vot/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "etichete/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "abonare-etichete/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "utilizatori/"
-#: urls.py:214
+#: urls.py:219
#, fuzzy
msgid "subscriptions/"
msgstr "abonamente"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "insigne/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "mesaje/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "macheaza-citit/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "incarca/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "sugestii/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "intrebare/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "cont/"
@@ -600,159 +629,183 @@ msgid ""
msgstr ""
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Configurări email și alerte"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Număr maxim de intrări întrun email de alerte"
-#: conf/email.py:48
+#: conf/email.py:57
#, fuzzy
msgid "Default notification frequency all questions"
msgstr "Frecvența implicită a notificărilor de noutăți"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
#, fuzzy
msgid "Default notification frequency questions asked by the user"
msgstr "Frecvența implicită a notificărilor de noutăți"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
#, fuzzy
msgid "Default notification frequency questions answered by the user"
msgstr "Frecvența implicită a notificărilor de noutăți"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
#, fuzzy
msgid "Send periodic reminders about unanswered questions"
msgstr "vezi întrebările fără răspuns"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
#, fuzzy
msgid "Max. number of reminders to send about unanswered questions"
msgstr "efectuați clic pentru a vedea întrebările cu cele mai multe răspunsuri"
-#: conf/email.py:168
+#: conf/email.py:177
#, fuzzy
msgid "Send periodic reminders to accept the best answer"
msgstr "vezi întrebările fără răspuns"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
#, fuzzy
msgid "Max. number of reminders to send to accept the best answer"
msgstr "efectuați clic pentru a vedea întrebările cu cele mai multe răspunsuri"
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr ""
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
#, fuzzy
msgid "Allow posting questions by email"
msgstr "autentificați-vă pentru a pune o întrebare"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "autentificați-vă pentru a pune o întrebare"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -783,15 +836,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -799,11 +852,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -811,70 +864,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr ""
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "Pagini statice - despre, confidențialiate, etc"
@@ -914,11 +951,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -976,107 +1015,165 @@ msgstr ""
#: conf/forum_data_rules.py:126
#, fuzzy
+msgid "Are tags required?"
+msgstr "etichetele sunt obligatorii"
+
+#: conf/forum_data_rules.py:135
+#, fuzzy
msgid "Mandatory tags"
msgstr "etichete actualizate"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr ""
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr ""
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Etichete întrebare"
+
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "Profil utilizator"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1152,16 +1249,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1327,6 +1424,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1528,27 +1629,27 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "URL site pentru feedback"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr "Dacă este lăsat gol, se va folosi un formular intern de feedback"
@@ -1673,21 +1774,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1695,40 +1796,40 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr ""
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1740,11 +1841,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1753,21 +1854,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1776,21 +1877,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1799,19 +1900,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1822,19 +1923,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1901,41 +2002,69 @@ msgstr ""
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
#, fuzzy
msgid "User settings"
msgstr "Configurări de bază"
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "adresa de email"
+
+#: conf/user_settings.py:41
#, fuzzy
msgid "Allow account recovery by email"
msgstr "E-mail-ul pentru recuperarea contului a fost trimis"
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
#, fuzzy
msgid "Allow adding and removing login methods"
msgstr "Adăugați una sau mai multe metode de autentificare"
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+#, fuzzy
+msgid "Default avatar for users"
+msgstr "Valoare implicită: %s"
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -2046,332 +2175,345 @@ msgstr "spam sau reclamă"
msgid "too localized"
msgstr "prea localizată"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "cele mai noi"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "mai vechi"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "activ"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "inactiv"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "cele mai interesante"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "mai reci"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "cele mai votate"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "cele mai puțin votate"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "relevanță"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "toate"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "fără răspuns"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "favorite"
-#: const/__init__.py:64
+#: const/__init__.py:70
#, fuzzy
msgid "list"
msgstr "Listă etichete"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "Întrebarea nu are răspuns"
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "Întrebarea nu are un răspuns acceptat"
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr "a pus o întrebare"
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr "a răspuns unei întrebări"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "întrebare comentată"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "răspuns comentat"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "întrebare editată"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "răspuns editat"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "recompensă primită"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "marcat ca cel mai bun răspuns"
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "votat pozitiv"
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "votat negativ"
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "vot anulat"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "întrebare ștearsă"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "răspuns șters"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "marcat ca ofensator"
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "etichete actualizate"
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr ""
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "profil utilizator complet"
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "e-mail actualizat trimis utilizatorului"
-#: const/__init__.py:142
+#: const/__init__.py:145
#, fuzzy
msgid "reminder about unanswered questions sent"
msgstr "vezi întrebările fără răspuns"
-#: const/__init__.py:146
+#: const/__init__.py:149
#, fuzzy
msgid "reminder about accepting the best answer sent"
msgstr "vezi întrebările fără răspuns"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "menționat în postare"
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "întrebare_cu_răspuns"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "întrebare_comentată"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr "răspuns_comentat"
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr "răspuns_acceptat"
+#, fuzzy
+msgid "answered question"
+msgstr "a răspuns unei întrebări"
+
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "răspuns editat"
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[închis]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[șters]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "versiune inițială"
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "reetichetat"
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr "dezactivat"
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "exclude cele ignorate"
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr "doar cele selectate"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "instant"
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "zilnic"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "săptămânal"
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "fără e-mail"
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
#, fuzzy
msgid "mystery-man"
msgstr "ieri"
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
#, fuzzy
msgid "wavatar"
msgstr "ce este gravatarul"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "aur"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "argint"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "bronz"
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr ""
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr ""
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr "cele mai relevante întrebări"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr "efectuați clic pentru a vedea cele mai relevante întrebări"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "după relevanță"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "clic pentru a vedea cele mai vechi întrebări"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "după dată"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "efectuați clic pentru a vedea cele mai noi întrebări"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "clic pentru a vedea cel mai puțin recent actualizate întrebări"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "după activitate"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "clic pentru a vedea cele mai recent actualizate întrebări"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr ""
"efectuați clic pentru a vedea întrebările cu cele mai puține răspunsuri"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "după răspunsuri"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr "efectuați clic pentru a vedea întrebările cu cele mai multe răspunsuri"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "efectuați clic pentru a vedea întrebările cu cele mai puține voturi"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "după voturi"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "efectuați clic pentru a vedea întrebările cu cele mai multe voturi"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr ""
@@ -2420,11 +2562,12 @@ msgid "Your user name (<i>required</i>)"
msgstr "Numele de utilizator este (<i>obligatoriu</i>)"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Nume de utilizator incorect"
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "ne pare rău, nu există nici un utilizator cu acest nume"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "autentificare/"
@@ -2462,7 +2605,7 @@ msgid "%(site)s user name and password"
msgstr ""
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "Creați un cont protejat prin parolă"
@@ -2546,13 +2689,13 @@ msgstr "Autentificați-vă cu numele de utilizator și parola %(provider)s"
msgid "Sign in with your %(provider)s account"
msgstr "Autentificați-vă cu contul de %(provider)s"
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "Legătura OpenID %(openid_url)s este nevalidă"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
@@ -2561,68 +2704,68 @@ msgstr ""
"Din păcate există o problemă la conectarea la %(provider)s, reîncercați sau "
"utilizați un alt furnizor"
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr "Noua parolă a fost salvată"
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
"Pentru a vă autentifica efectuați clic pe oricare din iconițele de mai jos"
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr "E-mail-ul pentru recuperarea contului a fost trimis"
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr "Adăugați una sau mai multe metode de autentificare"
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
"Dacă doriți, adăugați, ștergeți sau revalidați metodele de autentificare"
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr "Așteptați puțin! Contul dumneavoastră este recuperat, dar..."
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
"Ne pare rău, cheia pentru recuperarea contului a expirat sau nu mai este "
"validă"
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr "Metoda de autentificare pentru %(provider_name)s nu există"
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr "Oauu, scuze - a apărut o eroare - încercați mai târziu"
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr "Autentificarea pentru %(provider)s este funcțională"
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
"adresa dumneavoastră de e-mail trebuie validată, consultați %(details_url)s"
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr "Recuperați contul %(site)s"
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr "Verificați-vă e-mail-ul și mergeți la legătura inclusă"
@@ -2630,28 +2773,28 @@ msgstr "Verificați-vă e-mail-ul și mergeți la legătura inclusă"
msgid "Site"
msgstr "Pagină web"
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "Configurări de bază"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Valoare implicită: \"\""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Valoare implicită: "
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Valoare implicită: %s"
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr "Tipurile de fișiere imagine permise sunt %(types)s"
@@ -2667,7 +2810,7 @@ msgstr "Documentație"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Schimbă parola"
@@ -2730,63 +2873,23 @@ msgstr "Restrânge tot"
msgid "Congratulations, you are now an Administrator"
msgstr "Felicitări, de acum sunteți un administrator"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
#, fuzzy
msgid "Please accept the best answer for this question:"
msgstr "Fi primul care răspunde acestei întrebări!"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
#, fuzzy
msgid "Please accept the best answer for these questions:"
msgstr ""
"efectuați clic pentru a vedea întrebările cu cele mai puține răspunsuri"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
@@ -2794,70 +2897,33 @@ msgstr[0] "%(question_count)d întrebare actualizată despre %(topics)s"
msgstr[1] "%(question_count)d întrebări actualizate despre %(topics)s"
msgstr[2] "%(question_count)d de întrebări actualizate despre %(topics)s"
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
-"%(name)s, acesta este un antet de mesaj actualizat pentru %(num)d întrebare"
msgstr[1] ""
-"%(name)s, acesta este un antet de mesaj actualizat pentru %(num)d întrebări"
msgstr[2] ""
-"%(name)s, acesta este un antet de mesaj actualizat pentru %(num)d de "
-"întrebări"
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "întrebare nouă"
-#: 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 ""
-"Vizitați pagina askbot pentru a afla noutățile! Puteți duce vestea mai "
-"departe - poate că cineva cunoscut are răspunsuri pentru aceste întrebări "
-"sau dorește să posteze o întrebare."
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-"Frecvența aleasă de dumneavoastră pentru a primi întrebările selectate este "
-"„zilnic”. Dacă primiți mai mult de un e-mail pe zi, adresați-vă "
-"administratorului paginii askbot pentru a raporta problema."
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-"Frecvența aleasă de dumneavoastră pentru a primi întrebările selectate este "
-"„săptămânal”. Dacă primiți mai mult de un e-mail pe săptămână, adresați-vă "
-"administratorului paginii askbot pentru a raporta problema."
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-"Există posibilitatea unele legături pe care le-ați primit deja să vă fie din "
-"nou trimise - cauza este de natură tehnică și va fi remediată. "
-
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-"mergeți la %(email_settings_link)s pentru a modifica frecvența e-mail-urilor "
-"cu actualizări sau %(admin_email)s de administrare"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, fuzzy, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2870,7 +2936,7 @@ msgstr[2] "%(question_count)d de întrebări actualizate despre %(topics)s"
msgid "Please log in to use %s"
msgstr "administrează metodele de autentificare"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
@@ -2878,7 +2944,7 @@ msgstr ""
"Nu puteți accepta sau refuza cele mai bune răspunsuri deoarece contul "
"dumneavoastră este blocat"
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
@@ -2886,7 +2952,7 @@ msgstr ""
"Nu puteți accepta sau refuza cele mai bune răspunsuri deoarece contul "
"dumneavoastră este suspendat"
-#: models/__init__.py:334
+#: models/__init__.py:337
#, fuzzy, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
@@ -2895,13 +2961,13 @@ msgstr ""
"Nu se poate accepta sau revoca acceptarea pentru propriul răspuns la propria "
"întrebare"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, fuzzy, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
@@ -2910,53 +2976,43 @@ msgstr ""
"Numai autorul original al întrebării - %(username)s - poate accepta cel mai "
"bun răspuns"
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "nu se pot vota mesajele proprii"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "Contul dumneavoastră pare a fi blocat "
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "Contul dumneavoastră pare a fi suspendat "
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr "Sunt necesare >%(points)s puncte pentru a vota pozitiv"
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr "sunt necesare %(points)s puncte pentru a dezaprova"
-#: models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "Utilizatorii blocați nu pot încărca fișiere"
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr "Utilizatorii suspendați nu pot încărca fișiere"
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"încărcarea de imagini este limitată utilizatorilor cu mai mult de "
-"%(min_rep)s puncte de reputație"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr "utilizatorii blocați nu pot introduce postări"
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr "utilizatorii suspendați nu pot introduce postări"
-
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2974,19 +3030,19 @@ msgstr[2] ""
"Comentariile (cu excepția ultimului) pot fi modificate numai într-un "
"interval de %(minutes)s de minute de la postare"
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
"Doar cel care a adăugat mesajul și moderatorii pot modifica comentariile"
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
"Deoarece contul dumneavoastră este suspendat, puteți comenta numai postările "
"proprii"
-#: models/__init__.py:510
+#: models/__init__.py:523
#, python-format
msgid ""
"Sorry, to comment any post a minimum reputation of %(min_rep)s points is "
@@ -2996,7 +3052,7 @@ msgstr ""
"%(min_rep)s puncte de reputație. Puteți în continuare să comentați mesajele "
"și răspunsurile pentru întrebările proprii"
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
@@ -3004,7 +3060,7 @@ msgstr ""
"Această postare a fost ștearsă și poate fi văzută numai de către "
"proprietari, administratorii site-ului și moderatori"
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
@@ -3012,18 +3068,18 @@ msgstr ""
"Numai moderatorii, administratorii site-ului și proprietarii postării pot "
"modifica postările șterse"
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
"Deoarece contul dumneavoastră este blocat, nu puteți modifica postările"
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
"Deoarece contul dumneavoastră este suspendat, puteți modifica numai "
"postările proprii"
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
@@ -3031,7 +3087,7 @@ msgstr ""
"Pentru a modifica wiki-ul, este necesar un minim de %(min_rep)s puncte de "
"reputație"
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
@@ -3040,7 +3096,7 @@ msgstr ""
"Ne pare rău, pentru a modifica mesajele altor utilizatori este nevoie de un "
"minim de %(min_rep)s puncte de reputație"
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3057,18 +3113,18 @@ msgstr[2] ""
"Nu puteți șterge întrebarea deoarece beneficiază de răspunsuri votate "
"pozitiv de alți utilizatori."
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr "Deoarece contul dumneavoastră este blocat, nu puteți șterge postări"
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
"Deoarece contul dumneavoastră este suspendat, puteți șterge numai postările "
"proprii"
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
@@ -3077,16 +3133,16 @@ msgstr ""
"Ne pare rău, pentru a șterge mesajele altor utilizatori este nevoie de un "
"minim de %(min_rep)s puncte de reputație"
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr "Deoarece contul dumneavoastră este blocat, nu puteți închide întrebări"
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
"Deoarece contul dumneavoastră este suspendat, nu puteți închide întrebări"
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
@@ -3095,7 +3151,7 @@ msgstr ""
"Ne pare rău, pentru a închide mesajele altor utilizatori este nevoie de un "
"minim de %(min_rep)s puncte de reputație"
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
@@ -3103,7 +3159,7 @@ msgstr ""
"Ne pare rău, pentru a închide propria întrebare este nevoie de un minim de "
"%(min_rep)s puncte de reputație"
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
@@ -3113,7 +3169,7 @@ msgstr ""
"o reputație de minim %(min_rep)s puncte de reputație pot redeschide "
"întrebări."
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
@@ -3121,64 +3177,71 @@ msgstr ""
"Ne pare rău, pentru a redesche propria întrebare este nevoie de un minim de "
"%(min_rep)s puncte de reputație"
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "nu se poate marca ofensiv de mai multe ori"
-
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
-msgstr "utilizatorii blocați nu pot marca postări"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
+msgstr ""
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
-msgstr "utilizatorii suspendați nu pot marca postări"
+#: models/__init__.py:783
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr "Deoarece contul dumneavoastră este blocat, nu puteți șterge postări"
-#: models/__init__.py:768
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
msgstr ""
-"este nevoie de mai mult de %(min_rep)s puncte pentru a marca drept spam"
+"Ne pare rău, pentru a reeticheta întrebări este nevoie de un minim de "
+"%(min_rep)s puncte de reputație"
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "ați depășit %(max_flags_per_day)s"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
-msgstr "utilizatorii blocați nu pot marca postări"
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr "Deoarece contul dumneavoastră este blocat, nu puteți șterge postări"
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
-msgstr "utilizatorii suspendați nu pot marca postări"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
+#: models/__init__.py:843
#, fuzzy, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
-"este nevoie de mai mult de %(min_rep)s puncte pentru a marca drept spam"
+"Ne pare rău, pentru a reeticheta întrebări este nevoie de un minim de "
+"%(min_rep)s puncte de reputație"
msgstr[1] ""
-"este nevoie de mai mult de %(min_rep)s puncte pentru a marca drept spam"
+"Ne pare rău, pentru a reeticheta întrebări este nevoie de un minim de "
+"%(min_rep)s puncte de reputație"
msgstr[2] ""
-"este nevoie de mai mult de %(min_rep)s puncte pentru a marca drept spam"
+"Ne pare rău, pentru a reeticheta întrebări este nevoie de un minim de "
+"%(min_rep)s puncte de reputație"
-#: models/__init__.py:828
+#: models/__init__.py:862
#, fuzzy
msgid "you don't have the permission to remove all flags"
msgstr "Nu aveți permisiunea de a edita valorile"
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
@@ -3186,19 +3249,19 @@ msgstr ""
"Numai proprietarii întrebării, administratorii site-ului și moderatorii pot "
"reeticheta întrebările șterse"
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
"Deoarece contul dumneavoastră este blocat, nu puteți reeticheta întrebări"
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
"Deoarece contul dumneavoastră este suspendat, puteți reeticheta numai "
"întrebările proprii"
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
@@ -3206,42 +3269,42 @@ msgstr ""
"Ne pare rău, pentru a reeticheta întrebări este nevoie de un minim de "
"%(min_rep)s puncte de reputație"
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr "Deoarece contul dumneavoastră este blocat, nu puteți șterge comentarii"
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
"Deoarece contul dumneavoastră este suspendat, puteți șterge numai propriile "
"comentarii"
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
"Ne pare rău, pentru a șterge un comentariu este nevoie de un minim de "
"%(min_rep)s puncte de reputație"
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "voturile vechi nu pot fi revocate"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "în %(date)s"
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, fuzzy, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
@@ -3249,7 +3312,7 @@ msgstr[0] "acum %(hr)d oră"
msgstr[1] "acum %(hr)d ore"
msgstr[2] "acum %(hr)d de ore"
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, fuzzy, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
@@ -3257,7 +3320,7 @@ msgstr[0] "acum %(min)d minut"
msgstr[1] "acum %(min)d minute"
msgstr[2] "acum %(min)d de minute"
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
@@ -3265,51 +3328,51 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "Anonim"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Administrator"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "Moderator"
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Utilizator suspendat"
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Utilizator blocat"
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Utilizator înregistrat"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Utilizator urmărit"
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Utilizator aprobat"
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "%(username)s are %(reputation)s puncte de reputație"
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
@@ -3317,7 +3380,7 @@ msgstr[0] "o insignă de aur"
msgstr[1] "%(count)d insigne de aur"
msgstr[2] "%(count)d de insigne de aur"
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
@@ -3325,7 +3388,7 @@ msgstr[0] "o insignă de argint"
msgstr[1] "%(count)d insigne de argint"
msgstr[2] "%(count)d de insigne de argint"
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
@@ -3333,22 +3396,22 @@ msgstr[0] "o insignă de bronz"
msgstr[1] "%(count)d insigne de bronz"
msgstr[2] "%(count)d de insigne de bronz"
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s și %(item2)s"
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr "%(user)s are %(badges)s"
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "Re: \"%(title)s\""
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -3357,7 +3420,7 @@ msgstr ""
"Felicitări, ați obținut o insignă „%(badge_name)s”. Verificați <a href="
"\"%(user_profile)s\">profilul propriu</a>."
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr "Abonarea la etichetă a fost salvată!"
@@ -3619,20 +3682,20 @@ msgstr "Taxonomist"
msgid "Created a tag used by %(num)s questions"
msgstr "A creat o etichetă folosită în %(num)s întrebări"
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "Expert"
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "Foarte activ pe o anumită etichetă"
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr ""
"Ne pare rău, această întrebare a fost ștearsă și nu mai este accesibilă"
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
@@ -3640,12 +3703,12 @@ msgstr ""
"Ne pare rău, răspunsul pe care îl cautați nu mai etse disponibil deoarece "
"întrebarea asociată a fost ștearsă"
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr ""
"Ne pară rău, această întrebarea a fost ștearsă și nu mai este accesibilă"
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
@@ -3653,7 +3716,7 @@ msgstr ""
"Ne pare rău, comentariu pe care îl cautați nu mai este accesibil deoarece "
"întrebarea asociată a fost ștearsă"
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
@@ -3661,46 +3724,26 @@ msgstr ""
"Ne pare rău, comentariul pe care îl cautați nu mai este accesibil deoarece "
"răspunsul asociat a fost șters"
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" și \"%s\""
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr "\" și în plus"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s a modificat întrebarea"
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr "%(people)s au adăugat %(new_answer_count)s întrebări noi"
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s au comentat întrebările"
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s au comentat răspunsurile"
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s au comentat un răspuns"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Validează adresa de e-mail"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Schimbat de moderator. Motiv:</em> %(reason)s"
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
@@ -3709,7 +3752,7 @@ msgstr ""
"%(points)s puncte au fost adăugate pentru contribuția utilizatorului "
"%(username)s la întrebarea %(question_title)s"
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
@@ -3718,69 +3761,71 @@ msgstr ""
"%(points)s puncte au fost retrase pentru contribuția utilizatorului "
"%(username)s la întrebarea %(question_title)s"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "interesant"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "ignorat"
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "Toate întrebările"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Întrebările pe care le-am pus"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Întrebările la care am răspuns"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "Întrebări selectate individual"
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr "Mențiuni și răspunsuri la comentarii"
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Imediat"
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Zilnic"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "Săptămânal"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "Fără email"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
#, fuzzy
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Introduceți %(username_token)s"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
#, fuzzy
msgid "(or select another login method above)"
msgstr "alegeți una dintre opțiunile de mai sus"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr ""
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Schimbare email"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3789,29 +3834,38 @@ msgstr "Salvați adresa de email"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
-msgstr "modifică informațiile despre %(email)s"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
msgstr ""
-"pentru a afla de ce este necesară o adresă de e-mail, consultați "
-"%(gravatar_faq_url)s"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
-msgstr "Adresa nouă de e-mail"
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
-msgstr "Adresa dumneavoastră de e-mail"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "Salvează adresa de e-mail"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3819,132 +3873,114 @@ msgstr "Salvează adresa de e-mail"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Anulează"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "Validează adresa de e-mail"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
msgstr ""
-"validați informațiile despre %(email)s sau mergeți la %(change_email_url)s"
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "Adresa de e-mail nu a fost schimbată"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
msgstr ""
-"vechea adresă %(email)s a fost păstrată, puteți merge, dacă doriți, la "
-"%(change_email_url)s"
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "Adresa de e-mail a fost schimbată"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
-msgstr "adresa curentă %(email)s poate fi utilizată pentru acest lucru"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "Adresa de e-mail a fost verificată"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
-msgstr "Mulțumim pentru verificarea adresei de e-mail"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "cheia pentru adresa de e-mail nu a fost trimisă"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Validează adresa de e-mail"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
-"cheia pentru adresa de e-mail nu a fost trimisă %(email)s modificați adresa "
-"de e-mail aici %(change_link)s"
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
msgid "Registration"
msgstr "Înregistrare"
-#: skins/common/templates/authopenid/complete.html:27
-#, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-"înregistrați informații noi pentru contul %(provider)s, consultați "
-"%(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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 ""
-"%(username)s există deja, alegeți un alt nume pentru \n"
-" %(provider)s. Este necesară și o adresă de e-"
-"mail, consultați %(gravatar_faq_url)s\n"
-" "
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr ""
-"înregistrați informații noi pentru contul %(provider)s extern, consultați "
-"%(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr ""
-"înregistrați informații noi pentru conectarea prin contul Facebook, "
-"consultați %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr "Acest cont există deja, vă rugăm să utilizați un altul."
-
-#: skins/common/templates/authopenid/complete.html:59
-#, fuzzy
-msgid "Screen name label"
-msgstr "Nume afișat"
-
-#: skins/common/templates/authopenid/complete.html:66
+#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
-msgid "Email address label"
-msgstr "adresa de email"
+msgid "User registration"
+msgstr "Înregistrare"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
#, fuzzy
msgid "please select one of the options above"
msgstr "alegeți una dintre opțiunile de mai sus"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "creaţi un cont"
-
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
msgstr ""
@@ -3972,7 +4008,7 @@ msgstr "Vă rugăm să vă autentificați pentru a vă abona la: %(tags)s"
#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr "<p>Cu stimă,<br/>Administrator forum</p>"
#: skins/common/templates/authopenid/email_validation.txt:1
@@ -3989,8 +4025,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -4030,9 +4066,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -4067,135 +4103,100 @@ msgid ""
"account"
msgstr "Verificați-vă e-mail-ul și mergeți la legătura inclusă"
-#: skins/common/templates/authopenid/signin.html:87
+#: skins/common/templates/authopenid/signin.html:89
#, fuzzy
-msgid "Please enter your <span>user name and password</span>, then sign in"
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Introduceți %(username_token)s"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Vă rugăm să vă autentificați pentru a vă abona la: %(tags)s"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
#, fuzzy
msgid "Login or email"
msgstr "fără e-mail"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Parolă"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Autentificare"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr "Parolă nouă"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr "introduceți din nou"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
#, fuzzy
msgid "Here are your current login methods"
msgstr "Adăugați una sau mai multe metode de autentificare"
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
#, fuzzy
msgid "provider"
msgstr "Utilizator aprobat"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "văzut ultima dată"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "șterge"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "voturile vechi nu pot fi revocate"
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "Aveți și alte întrebări?"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
#, fuzzy
msgid "Please, enter your email address below and obtain a new key"
msgstr "Verificați-vă e-mail-ul și mergeți la legătura inclusă"
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
#, fuzzy
msgid "Please, enter your email address below to recover your account"
msgstr "Verificați-vă e-mail-ul și mergeți la legătura inclusă"
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
#, fuzzy
msgid "recover your account via email"
msgstr "Recuperați contul %(site)s"
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
#, fuzzy
msgid "Recover your account via email"
msgstr "Recuperați contul %(site)s"
-#: skins/common/templates/authopenid/signin.html:216
-#, fuzzy
-msgid "Why use OpenID?"
-msgstr "URL OpenID"
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:222
-#, fuzzy
-msgid "reuse openid"
-msgstr "redeschide"
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:232
-#, fuzzy
-msgid "Find out more"
-msgstr "\" și în plus"
-
-#: skins/common/templates/authopenid/signin.html:233
-#, fuzzy
-msgid "Get OpenID"
-msgstr "URL OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr ""
-
#: skins/common/templates/authopenid/signup_with_password.html:10
#, fuzzy
msgid "Please register by clicking on any of the icons below"
@@ -4213,25 +4214,29 @@ msgid "Create login name and password"
msgstr "Autentificați-vă cu numele de utilizator și parola %(provider)s"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:47
-#, fuzzy
-msgid "Create Account"
-msgstr "creaţi un cont"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "sau"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr ""
@@ -4293,73 +4298,74 @@ msgstr ""
msgid "Delete These"
msgstr "răspuns șters"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "legătură permanentă întrebare"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "Răspunde întrebării"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "legătură permanentă"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "modifică"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "legătură"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "recuperează"
+
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "remove all flags"
-msgstr "vezi toate etichetele"
+msgid "remove offensive flag"
+msgstr "elimină"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+#, fuzzy
+msgid "remove flag"
+msgstr "elimină"
+
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
"raportează ca ofensatoare (de ex. conține spam, reclame, texte rău-voitoare, "
"etc.)"
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "marchează ofensiv"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-#, fuzzy
-msgid "remove flag"
-msgstr "elimină"
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "recuperează"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "modifică"
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Răspunde întrebării"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "acest răspuns a fost ales drept corect"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
#, fuzzy
msgid "mark this answer as correct (click again to undo)"
msgstr ""
"marchează acest răspuns ca favorit (efectuați clic din nou pentru a anula)"
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "%(question_author)s a ales acest răspuns ca fiind cel corect"
-
#: skins/common/templates/question/closed_question_info.html:2
#, fuzzy, python-format
msgid ""
@@ -4375,60 +4381,68 @@ msgid "close date %(closed_at)s"
msgstr "data închiderii %(closed_at)s"
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr "reetichetează"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "redeschide"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "închide"
-#: skins/common/templates/widgets/edit_post.html:21
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr "reetichetează"
+
+#: skins/common/templates/widgets/edit_post.html:22
#, fuzzy
-msgid "one of these is required"
+msgid ", one of these is required"
msgstr "acest câmp este obligatoriu"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "etichete"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(obligatoriu)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Comută previzualizare în timp real pentru textul Markdown"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "ascunde previzualizarea"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Etichete asemămătoare"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr "Etichete interesante"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
#, fuzzy
msgid "add"
msgstr "Adaugă"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "Etichete ignorate"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr "Afișare filtre etichete"
@@ -4482,7 +4496,7 @@ msgid "back to previous page"
msgstr "mergeți înapoi la pagina anterioară"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr "vezi toate întrebările"
@@ -4511,11 +4525,6 @@ msgstr "vezi cele mai recente întrebări"
msgid "see tags"
msgstr "vezi etichetele"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr "Despre %(site_name)s"
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4545,17 +4554,20 @@ msgstr "Salvează modificările"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "arată previzualizarea"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "Puneți o întrebare"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "Puneți întrebarea"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr "%(name)s"
@@ -4570,8 +4582,8 @@ msgid "Badge \"%(name)s\""
msgstr "Insigna „%(name)s”"
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, python-format
msgid "%(description)s"
msgstr "%(description)s"
@@ -4583,11 +4595,7 @@ msgstr[0] "utilizator care a primit această insignă:"
msgstr[1] "utilizatorii care au primit acestă insignă:"
msgstr[2] "utilizatorii care au primit acestă insignă:"
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Sumar insigne"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "Insigne"
@@ -4598,49 +4606,54 @@ msgstr ""
"dumneavoastră."
#: skins/default/templates/badges.html:8
-#, python-format
+#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"Mai jos este lista insignelor disponibile și numărul \n"
"de ori fiecare dintre ele a fost obținuntă. Puteți trimite sugestiile "
"voastre la %(feedback_faq_url)s.\n"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Insigne ale comunității"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr "insignă de aur: cea mai înaltă onoare ... și foarte rară"
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr "descriere insignă de aur"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
"insignă de argint: acordată ocazional pentru contribuții de cea mai bună "
"calitate"
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
-msgstr "descriere insignă de argint"
+#: skins/default/templates/badges.html:51
+#, fuzzy
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
+msgstr ""
+"insignă de argint: acordată ocazional pentru contribuții de cea mai bună "
+"calitate"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr ""
"insignă de argint: acordată adesea pentru a onora pe cineva într-un mod "
"special"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "descriere insignă de bronz"
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Închide întrebarea"
@@ -4657,11 +4670,10 @@ msgstr "Motive"
msgid "OK to close"
msgstr "Ok pentru închidere"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr "Întrebări frecvente"
@@ -4682,15 +4694,17 @@ msgstr ""
"pentru această comunitate."
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Înainte de a pune o întrebare vă rugăm să căutați acestă întrebare pentru a "
"vă asigura că nu are deja un răspuns."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "Ce întrebări ar trebui să evit a pune?"
#: skins/default/templates/faq_static.html:11
@@ -4707,13 +4721,11 @@ msgstr "Ce ar trebui să evit în răspunsurile mele?"
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
-"Este un site pentru întrebări și răspunsuri, nu un grup de discuții. De "
-"aceea evitați purtarea unor discuții în răspunsurile dumneavoastră, mai ales "
-"că funcția pentru comentarii permite ceva spațiu pentru discuții scurte."
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4728,20 +4740,26 @@ msgid "This website is moderated by the users."
msgstr "Acest site web este moderat de utilizatori."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"Sistemul de reputație permite utilizatorilor să câștige autoritate pe care o "
"folosesc la realizarea mai multor sarcini de moderare."
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "Cum funcționează sistemul de reputație?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr "Sumar al sistemului de reputație"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -4771,57 +4789,68 @@ msgstr ""
msgid "upvote"
msgstr "vot pozitiv"
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr "utilizează etichete"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "adaugă comentarii"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "vot negativ"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "comentarii și răspunsuri pentru întrebările altora"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "deschide și închide propriile întrebări"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr "reetichetează întrebările altora"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "modifică întrebările wiki-ului comunității"
-#: skins/default/templates/faq_static.html:67
-msgid "\"edit any answer"
+#: skins/default/templates/faq_static.html:61
+#, fuzzy
+msgid "edit any answer"
msgstr "\"modifică orice răspuns"
-#: skins/default/templates/faq_static.html:71
-msgid "\"delete any comment"
+#: skins/default/templates/faq_static.html:65
+#, fuzzy
+msgid "delete any comment"
msgstr "\"șterge orice comentariu"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "ce este gravatarul"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
-msgstr "informații utile despre gravatar"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Pentru a mă înregistra trebuie să creez o parolă nouă?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
@@ -4829,19 +4858,19 @@ msgstr ""
"Nu, nu trebuie neapărat. Vă puteți autentifica prin orice serviciu care "
"recunoaște OpenID, de ex. Google, Yahoo, AOL, etc.\""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr "\"Autentifică acum!\""
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "De ce alții pot modifica întrebările/răspunsurile mele?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr "Scopul acestui site este..."
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "
@@ -4851,20 +4880,20 @@ msgstr ""
"către utilizatori cu experineță în acest fel îmbunătățindu-se calitatea "
"bazei de cunoștințe."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
"Dacă această abordare nu este pe placul dumneavoastră, vă respectăm alegerea."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "Aveți și alte întrebări?"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Răspundeți întrebărilor la %(ask_question_url)s, ajutând astfel comunitatea "
"să devină mai bună!"
@@ -4932,6 +4961,68 @@ msgstr ""
"\n"
"Salut, acesta este un mesaj de sugestii pentru %(site_title)s\n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "răspunsuri pentru %(username)s"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5067,60 +5158,59 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr "<p>Cu stimă,<br/>Administrator forum</p>"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr "Partajează această întrebare pe twitter"
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-#, fuzzy
-msgid "i like this question (click again to cancel)"
-msgstr "îmi place această postare (efectuați clic din nou pentru a anula)"
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "îmi place acest răspuns (efectuați clic din nou pentru a anula)"
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr "număr actual de voturi"
-#: skins/default/templates/macros.html:43
-#, fuzzy
-msgid "i dont like this question (click again to cancel)"
-msgstr "nu îmi place această postare (efectuați clic din nou pentru a anula)"
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr "nu îmi place acest răspuns (efectuați clic din nou pentru a anula)"
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
msgid "anonymous user"
msgstr "utilizator anonim"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr "acest text este marca drep un wiki al comunității"
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
@@ -5130,119 +5220,97 @@ msgstr ""
" Oricine cu o reputație mai mare decât %(wiki_min_rep)s este binevenit "
"să o imbunătățească."
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "întrebat"
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "răspuns"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "adăugat"
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "actualizat"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "afișează întrebările etichetate „%(tag)s”"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "șterge acest comentariu"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "adaugă comentariu"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "afișează încă <strong>%(counter)s</strong>"
-msgstr[1] "afișează încă <strong>%(counter)s</strong>"
-msgstr[2] "afișează încă <strong>%(counter)s</strong>"
-
-#: skins/default/templates/macros.html:310
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "afișează încă <strong>%(counter)s</strong> comentariu"
-msgstr[1] "afișează încă <strong>%(counter)s</strong> comentarii"
-msgstr[2] "afișează încă <strong>%(counter)s</strong> de comentarii"
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "imagine gravatat %(username)s"
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr "Pagina web pentru %(username)s este %(url)s"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "precedentă"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "pagiona curentă"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "număr pagină %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "pagina următoare"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "postări pe pagină"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr "răspunsuri pentru %(username)s"
-#: skins/default/templates/macros.html:632
-#, python-format
-msgid "you have a new response"
+#: skins/default/templates/macros.html:610
+#, fuzzy, python-format
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "ai un răspuns nou"
msgstr[1] "ai %(response_count)s răspunsuri noi"
msgstr[2] "ai %(response_count)s de răspunsuri noi"
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "încă nici un răspuns nou"
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "%(new)s postări noi marcate și %(seen)s anterioare"
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr "%(new)s postări noi marcate"
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr "%(seen)s (de) postări marcate"
@@ -5251,10 +5319,37 @@ msgstr "%(seen)s (de) postări marcate"
msgid "Questions"
msgstr "Întrebări"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
-msgstr "Politica de confidențialitate"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "afișează încă <strong>%(counter)s</strong>"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "afișează încă <strong>%(counter)s</strong>"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "adaugă comentariu"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Răspunde propriei întrebări"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "Răspunsul tău"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Autentifică-te / înregistrează-te pentru a adăuga răspunsul"
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
@@ -5263,8 +5358,9 @@ msgstr "Modifică întrebarea"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Schimbă etichetele"
+#, fuzzy
+msgid "Retag question"
+msgstr "Întrebări similare"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -5321,6 +5417,13 @@ msgstr "Redeschide această întrebare?"
msgid "Reopen this question"
msgstr "Redeschide această întrebare"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5348,17 +5451,17 @@ msgstr "Abonați-vă la următoarele etichete:"
msgid "Subscribe"
msgstr "Abonare"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Listă etichete"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Listă etichete"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
#, fuzzy
msgid "Sort by &raquo;"
msgstr "Ordonează după:"
@@ -5379,7 +5482,7 @@ msgstr "ordonate după frecvența folosirii etichetei"
msgid "by popularity"
msgstr "după popularitate"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "Nu a fost găsit nimic"
@@ -5393,7 +5496,9 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
msgstr "reputație"
#: skins/default/templates/users.html:20
@@ -5425,7 +5530,7 @@ msgstr ""
msgid "Nothing found."
msgstr "Nu s-a găsit nimic."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, fuzzy, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5447,42 +5552,42 @@ msgstr ""
msgid "Tagged"
msgstr "reetichetat"
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr "Indicii de căutare:"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
#, fuzzy
msgid "reset author"
msgstr "resetare etichete"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
msgid " or "
msgstr " sau "
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr "resetare etichete"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr "începeți din nou"
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
" pentru a lărgi sau a filtra prin adăugarea mai multor etichete sau a "
"textului de căutat."
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr "Indiciu de căutare:"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr "adăugarea de etichete și a mai multe cuvinte cheie pentru căutare"
@@ -5525,19 +5630,19 @@ msgstr "începeți din nou"
msgid "Please always feel free to ask your question!"
msgstr "autentificați-vă pentru a pune o întrebare"
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr "Nu ați găsit ceea ce căutați?"
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr "Vă rugăm să puneți o întrebare!"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
msgid "subscribe to the questions feed"
msgstr "abonarea la fluxul de întrebări"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5549,7 +5654,7 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, fuzzy, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
@@ -5560,7 +5665,7 @@ msgstr[1] ""
msgstr[2] ""
"fiecare etichetă trebuie să fie mai scurtă de %(max_chars)d de caractere"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, fuzzy, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
@@ -5568,7 +5673,7 @@ msgstr[0] "vă rugăm să folosiți %(tag_count)d etichetă sau mai puțin"
msgstr[1] "vă rugăm să folosiți %(tag_count)d etichete sau mai puțin"
msgstr[2] "vă rugăm să folosiți %(tag_count)d de etichete sau mai puțin"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, fuzzy, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5578,11 +5683,11 @@ msgstr "până la 5 etichete, mai puțin de 20 de caractere pentru fiecare"
#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
@@ -5597,67 +5702,64 @@ msgstr[2] ""
" %(counter)s de răspunsuri:\n"
" "
+#: skins/default/templates/question/answer_tab_bar.html:11
+#, fuzzy
+msgid "Sort by »"
+msgstr "Ordonează după:"
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr "răspunsurile mai vechi vor fi afișate întâi"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "cele mai vechi întrebări"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "răspunsurile mai noi vor fi afișate întâi"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "cele mai noi răspunsuri"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "cele mai votate răspunsuri vor fi afișate întâi"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "răspunsuri populare"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "Răspunde propriei întrebări"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "Autentifică-te / înregistrează-te pentru a adăuga răspunsul"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "Răspunsul tău"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr "Fi primul care răspunde acestei întrebări!"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr "puteți răspunde anonim și vă puteți autentifica după aceea"
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
-msgstr "răspunde propriei întrebări doar pentru a oferi un răspuns"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
-msgstr "vă rugăm să dați doar răspunsul, fără discuții"
-
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
-msgstr "Autentifică-te / înregistrează-te pentru a adăuga răspunsul"
+msgid ""
+"<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)!"
+msgstr ""
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Răspunde întrebării"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5675,37 +5777,37 @@ msgstr " sau "
msgid "email"
msgstr "email"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Etichete întrebare"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "clic pentru a vedea cele mai vechi întrebări"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "Închide întrebarea"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "Închide întrebarea"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "clic pentru a vedea cele mai vechi întrebări"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "Închide întrebarea"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
@@ -5713,23 +5815,23 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "actualizările email au fost anulate"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "abonarea la fluxul de întrebări"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "abonarea la fluxul de întrebări"
@@ -5739,51 +5841,43 @@ msgid "Stats"
msgstr ""
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "întrebare cu răspuns"
+#, fuzzy
+msgid "Asked"
+msgstr "întrebat"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "întrebarea a fost văzută de"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "ori"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "ultima actualizare"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Întrebări similare"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr "Notifică-mă o dată pe zi când apar răspunsuri noi"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+#, fuzzy
+msgid "Email me when there are any new answers"
msgstr "Notifică-mă o dată pe săptămână când apar răspunsuri noi"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
-msgstr "Notifică-mă imediat ce apar răspunsuri noi"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
-msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr ""
-"Puteți oricând să modificați frecvența notificărilor mergând la pagina "
-"%(profile_url)s"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
"odată ce vă veți autentifica, aici vă veți putea abona la orice actualizare"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+
#: skins/default/templates/user_profile/user.html:12
#, python-format
msgid "%(username)s's profile"
@@ -5815,8 +5909,13 @@ msgstr "Utilizator înregistrat"
msgid "Screen Name"
msgstr "Nume afișat"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "voturile vechi nu pot fi revocate"
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Actualizează"
@@ -5829,13 +5928,19 @@ msgstr "abonamente"
msgid "Email subscription settings"
msgstr "Configurări abonamente email"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr "informații configurări abonamente email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Nu mai trimite emailuri"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr "Adresa dumneavoastră de e-mail"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5863,18 +5968,22 @@ msgid "flagged items (%(flag_count)s)"
msgstr "elemente marcate (%(flag_count)s)"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr "selectează:"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
msgid "seen"
msgstr "văzut"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr "nou"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
msgid "none"
msgstr "niciunul"
@@ -5890,6 +5999,16 @@ msgstr "marcează ca nou"
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "elimină"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "șterge"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "actualizează profil"
@@ -5903,7 +6022,8 @@ msgid "real name"
msgstr "nume real"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "membru de"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5911,8 +6031,9 @@ msgid "last seen"
msgstr "văzut ultima dată"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr "pagină web utilizator"
+#, fuzzy
+msgid "website"
+msgstr "Pagină web"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -6055,19 +6176,16 @@ msgid "%(username)s's network is empty"
msgstr "Profilul pentru %(username)s"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr "activitate"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr "reputație"
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "Schimbările în reputație."
@@ -6091,22 +6209,18 @@ msgstr[1] "<span class=\"count\">%(counter)s</span> întrebări"
msgstr[2] "<span class=\"count\">%(counter)s</span> de întrebări"
#: skins/default/templates/user_profile/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] "<span class=\"count\">%(counter)s</span> răspuns"
-msgstr[1] "<span class=\"count\">%(counter)s</span> răspunsuri"
-msgstr[2] "<span class=\"count\">%(counter)s</span> de răspunsuri"
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "răspuns"
+msgstr[1] "răspunsuri"
+msgstr[2] "de răspunsuri"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "răspunsul a fost votat de %(answer_score)s de ori"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "acest răspuns a fost ales drept corect"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6147,7 +6261,7 @@ msgstr[0] "<span class=\"count\">%(counter)s</span> etichetă"
msgstr[1] "<span class=\"count\">%(counter)s</span> etichete"
msgstr[2] "<span class=\"count\">%(counter)s</span> de etichete"
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
@@ -6155,7 +6269,7 @@ msgstr[0] "<span class=\"count\">%(counter)s</span> insignă"
msgstr[1] "<span class=\"count\">%(counter)s</span> insigne"
msgstr[2] "<span class=\"count\">%(counter)s</span> de insigne"
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "indicații pentru răspunsuri"
@@ -6164,7 +6278,7 @@ msgstr "indicații pentru răspunsuri"
msgid "User profile"
msgstr "Profil utilizator"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "comentarii și răspunsuri pentru întrebările altora"
@@ -6173,48 +6287,40 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "graficul reputației utilizatorului"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "istorie reputație"
-
#: skins/default/templates/user_profile/user_tabs.html:25
#, fuzzy
msgid "questions that user is following"
msgstr "întrebări pe care utilizatorul le-a ales ca fiind favorite"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "activitate recentă"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "istoria voturilor utilizatorului"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "voturi date"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "voturi"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "configurări abonament email"
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr "moderează acest utilizator"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "voturi"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "indicații pentru răspunsuri"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "dați răspunsuri relevante pentru această comunitate"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6222,8 +6328,10 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr "încercați să oferiți un răspuns, nu să vă angajați într-o discuție"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "încercați să furnizați detalii"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "încercați să oferiți suficiente detalii"
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -6237,7 +6345,8 @@ msgstr "consultați secțiunea întrebărilor frecvente"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "indicii Markdown"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6261,11 +6370,6 @@ msgid "**bold** or __bold__"
msgstr "**îngroșat** sau __îngroșat__"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "legătură"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6292,33 +6396,29 @@ msgstr "de asemenea sunt suportate tag-uri HTML simple"
msgid "learn more about Markdown"
msgstr "află mai multe despre Markdown"
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "pune o întrebare"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr "autentificați-vă pentru a pune o întrebare"
-#: skins/default/templates/widgets/ask_form.html:10
-#, fuzzy, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"este necesar %(email)s valid pentru a posta, \n"
-" vezi %(email_validation_faq_url)s\n"
-" "
-#: skins/default/templates/widgets/ask_form.html:42
-#, fuzzy
-msgid "Login/signup to post your question"
-msgstr "Autentifică-te / înregistrează-te pentru a adăuga răspunsul"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Puneți întrebarea"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6334,10 +6434,15 @@ msgid "about"
msgstr "despre"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "politica de confidențialitate"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "oferă o sugestie"
@@ -6358,17 +6463,10 @@ msgstr "utilizatori"
msgid "badges"
msgstr "insigne"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "indicii căutare"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "puneți o întrebare relevantă"
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "încercați să oferiți suficiente detalii"
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr "dați răspunsuri relevante pentru această comunitate"
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
@@ -6391,28 +6489,28 @@ msgstr[0] "vot"
msgstr[1] "voturi"
msgstr[2] "de voturi"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr "vezi întrebările fără răspuns"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "vezi întrebările tale favorite"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "Vă rugăm să puneți o întrebare!"
@@ -6425,23 +6523,26 @@ msgstr "reputație:"
msgid "badges:"
msgstr "insigne:"
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "ieșire"
+#: skins/default/templates/widgets/user_navigation.html:9
+#, fuzzy
+msgid "sign out"
+msgstr "Ieșire"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "autentificare"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "Vă rugăm să vă autentificați pentru a vă abona la: %(tags)s"
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr "configurări"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "nu sunt elemente în contor"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr "niciunul"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr "Oops, ne cerem scuze - a apărut o eroare"
@@ -6459,7 +6560,8 @@ msgid "this field is required"
msgstr "acest câmp este obligatoriu"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "alegeți un nume de utilizator"
#: utils/forms.py:69
@@ -6495,8 +6597,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "adresa de email"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6512,17 +6614,13 @@ msgstr ""
"această adresă de email este deja folosită de un alt utilizator, folosiți o "
"altă adresă"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "alegeți parola"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "parola este obligatorie"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "retastați parola"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6532,15 +6630,15 @@ msgstr "retastați parola"
msgid "sorry, entered passwords did not match, please try again"
msgstr "ne pare rău, parolele tastate nu sunt identice, încercați din nou"
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "acum 2 zile"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "ieri"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
@@ -6548,7 +6646,7 @@ msgstr[0] "acum %(hr)d oră"
msgstr[1] "acum %(hr)d ore"
msgstr[2] "acum %(hr)d de ore"
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
@@ -6556,6 +6654,37 @@ msgstr[0] "acum %(min)d minut"
msgstr[1] "acum %(min)d minute"
msgstr[2] "acum %(min)d de minute"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr "A încărcat cu succes un avatar nou."
@@ -6568,68 +6697,85 @@ msgstr "Ați actualizat cu succes propriul avatar."
msgid "Successfully deleted the requested avatars."
msgstr "Ați șters cu succes avatarele cerute."
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr "Ne pare rău dar utilizatorii anonimi nu pot accesa inboxul"
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "utilizatorii anonimi nu pot vota"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "Ne pare rău, dar nu mai aveți voturi pentru azi... și mâine este o zi"
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Mai ai %(votes_left)s voturi pentru azi"
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "Ne pare rău dar utilizatorii anonimi nu pot accesa inboxul"
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "Ne pare rău dar ceva nu este în regulă aici"
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "Ne pare rău dar utilizatorii anonimi nu pot accepta răspunsuri"
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr "abonament salvat, %(email)s necesită validare, vezi %(details_url)s"
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "frecvența de actualizare a emailurilor a fost definită drept zilnic"
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr "Abonomanetul la etichetă a fost anulat (<a href=\"%(url)s\">refă</a>)."
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr "Vă rugăm să vă autentificați pentru a vă abona la: %(tags)s"
-#: views/commands.py:578
+#: views/commands.py:600
#, fuzzy
msgid "Please sign in to vote"
msgstr "Vă rugăm să vă autentificați pentru a vă abona la: %(tags)s"
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Vă rugăm să vă autentificați pentru a vă abona la: %(tags)s"
+
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "Despre %(site_name)s"
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Sugestii pentru întrebări și răspunsuri"
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Vă mulțumim pentru sugestii!"
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr "Suntem interesați de sugestiile voastre!"
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr "Politica de confidențialitate"
+
+#: views/readers.py:133
#, fuzzy, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
@@ -6641,15 +6787,7 @@ msgstr[1] ""
"#-#-#-#-# django.po (ubuntu-ro) #-#-#-#-#\n"
msgstr[2] "#-#-#-#-# django.po (ubuntu-ro) #-#-#-#-#\n"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d %(badge_level)s insignă"
-msgstr[1] "%(badge_count)d %(badge_level)s insigne"
-msgstr[2] "%(badge_count)d %(badge_level)s de insigne"
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
@@ -6657,93 +6795,99 @@ msgstr ""
"Ne pare rău, comentariul pe care îl căutați a fost șters nu mai este "
"accesibil"
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr "moderează utilizator"
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "profil utilizator"
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "privire de ansamblu profil utilizator"
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "activitate recentă utilizator"
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "profil - activitate recentă"
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "profil - răspunsuri"
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "profil - voturi"
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "reputația utilizatorului în comunitate"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr "reputație"
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "profil - reputație utilizator"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "întrebările favorite ale utilizatorului"
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "profile - întrebări favorite"
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "schimbările au fost salvate"
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "actualizările email au fost anulate"
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "profil - abonamente email"
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr "Utilizatorii anonimi nu pot încărca fișiere"
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "tipurile de fișiere permise sunt „%(file_types)s”"
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "mărimea maximă a fișierului încărcat este %(file_size)sK"
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
"Eroare la încărcarea fișierului. Vă rugăm să contactați administratorii "
"siteului. Vă mulțumim."
-#: views/writers.py:192
-#, fuzzy
-msgid "Please log in to ask questions"
-msgstr "autentificați-vă pentru a pune o întrebare"
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
#, fuzzy
msgid "Please log in to answer questions"
msgstr "vezi întrebările fără răspuns"
-#: views/writers.py:600
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -6752,11 +6896,11 @@ msgstr ""
"Nu sunteți autentificat și nu puteți adăuga comentarii . Vă rugăm să vă <a "
"href=\"%(sign_in_url)s\">autentificați</a>."
-#: views/writers.py:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr "Utilizatorii anonimi nu pot modifica comentariile"
-#: views/writers.py:658
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -6765,10 +6909,452 @@ msgstr ""
"Nu sunteți autentificat și nu puteți șterge comentarii . Vă rugăm să vă <a "
"href=\"%(sign_in_url)s\">autentificați</a>."
-#: views/writers.py:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "ne pare rău dar se pare că avem unele dificultăți tehnice"
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "folositi-aceste-caractere-in-etichete"
+
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "această adresă de email va fi conectată cu gravatarul"
+
+#~ msgid "question_answered"
+#~ msgstr "întrebare_cu_răspuns"
+
+#~ msgid "question_commented"
+#~ msgstr "întrebare_comentată"
+
+#~ msgid "answer_commented"
+#~ msgstr "răspuns_comentat"
+
+#~ msgid "answer_accepted"
+#~ msgstr "răspuns_acceptat"
+
+#~ msgid "Incorrect username."
+#~ msgstr "Nume de utilizator incorect"
+
+#~ 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] ""
+#~ "%(name)s, acesta este un antet de mesaj actualizat pentru %(num)d "
+#~ "întrebare"
+#~ msgstr[1] ""
+#~ "%(name)s, acesta este un antet de mesaj actualizat pentru %(num)d "
+#~ "întrebări"
+#~ msgstr[2] ""
+#~ "%(name)s, acesta este un antet de mesaj actualizat pentru %(num)d de "
+#~ "întrebări"
+
+#~ 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 ""
+#~ "Vizitați pagina askbot pentru a afla noutățile! Puteți duce vestea mai "
+#~ "departe - poate că cineva cunoscut are răspunsuri pentru aceste întrebări "
+#~ "sau dorește să posteze o întrebare."
+
+#~ 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 ""
+#~ "Frecvența aleasă de dumneavoastră pentru a primi întrebările selectate "
+#~ "este „zilnic”. Dacă primiți mai mult de un e-mail pe zi, adresați-vă "
+#~ "administratorului paginii askbot pentru a raporta problema."
+
+#~ 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 ""
+#~ "Frecvența aleasă de dumneavoastră pentru a primi întrebările selectate "
+#~ "este „săptămânal”. Dacă primiți mai mult de un e-mail pe săptămână, "
+#~ "adresați-vă administratorului paginii askbot pentru a raporta problema."
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr ""
+#~ "Există posibilitatea unele legături pe care le-ați primit deja să vă fie "
+#~ "din nou trimise - cauza este de natură tehnică și va fi remediată. "
+
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "mergeți la %(email_settings_link)s pentru a modifica frecvența e-mail-"
+#~ "urilor cu actualizări sau %(admin_email)s de administrare"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr ""
+#~ "încărcarea de imagini este limitată utilizatorilor cu mai mult de "
+#~ "%(min_rep)s puncte de reputație"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr "utilizatorii blocați nu pot introduce postări"
+
+#~ msgid "suspended users cannot post"
+#~ msgstr "utilizatorii suspendați nu pot introduce postări"
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr "nu se poate marca ofensiv de mai multe ori"
+
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr "utilizatorii blocați nu pot marca postări"
+
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr "utilizatorii suspendați nu pot marca postări"
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr ""
+#~ "este nevoie de mai mult de %(min_rep)s puncte pentru a marca drept spam"
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr "ați depășit %(max_flags_per_day)s"
+
+#, fuzzy
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr "utilizatorii blocați nu pot marca postări"
+
+#, fuzzy
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr "utilizatorii suspendați nu pot marca postări"
+
+#, fuzzy
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] ""
+#~ "este nevoie de mai mult de %(min_rep)s puncte pentru a marca drept spam"
+#~ msgstr[1] ""
+#~ "este nevoie de mai mult de %(min_rep)s puncte pentru a marca drept spam"
+#~ msgstr[2] ""
+#~ "este nevoie de mai mult de %(min_rep)s puncte pentru a marca drept spam"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "voturile vechi nu pot fi revocate"
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s a modificat întrebarea"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr "%(people)s au adăugat %(new_answer_count)s întrebări noi"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s au comentat întrebările"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s au comentat răspunsurile"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s au comentat un răspuns"
+
+#~ msgid "change %(email)s info"
+#~ msgstr "modifică informațiile despre %(email)s"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "pentru a afla de ce este necesară o adresă de e-mail, consultați "
+#~ "%(gravatar_faq_url)s"
+
+#~ msgid "Your new Email"
+#~ msgstr "Adresa nouă de e-mail"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "validați informațiile despre %(email)s sau mergeți la %(change_email_url)s"
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "vechea adresă %(email)s a fost păstrată, puteți merge, dacă doriți, la "
+#~ "%(change_email_url)s"
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr "adresa curentă %(email)s poate fi utilizată pentru acest lucru"
+
+#~ msgid "thanks for verifying email"
+#~ msgstr "Mulțumim pentru verificarea adresei de e-mail"
+
+#~ msgid "email key not sent"
+#~ msgstr "cheia pentru adresa de e-mail nu a fost trimisă"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "cheia pentru adresa de e-mail nu a fost trimisă %(email)s modificați "
+#~ "adresa de e-mail aici %(change_link)s"
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "înregistrați informații noi pentru contul %(provider)s, consultați "
+#~ "%(gravatar_faq_url)s"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "%(username)s există deja, alegeți un alt nume pentru \n"
+#~ " %(provider)s. Este necesară și o adresă de e-"
+#~ "mail, consultați %(gravatar_faq_url)s\n"
+#~ " "
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "înregistrați informații noi pentru contul %(provider)s extern, consultați "
+#~ "%(gravatar_faq_url)s"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "înregistrați informații noi pentru conectarea prin contul Facebook, "
+#~ "consultați %(gravatar_faq_url)s"
+
+#~ msgid "This account already exists, please use another."
+#~ msgstr "Acest cont există deja, vă rugăm să utilizați un altul."
+
+#, fuzzy
+#~ msgid "Screen name label"
+#~ msgstr "Nume afișat"
+
+#, fuzzy
+#~ msgid "Email address label"
+#~ msgstr "adresa de email"
+
+#~ msgid "create account"
+#~ msgstr "creaţi un cont"
+
+#~ msgid "Login"
+#~ msgstr "Autentificare"
+
+#, fuzzy
+#~ msgid "Why use OpenID?"
+#~ msgstr "URL OpenID"
+
+#, fuzzy
+#~ msgid "reuse openid"
+#~ msgstr "redeschide"
+
+#, fuzzy
+#~ msgid "Find out more"
+#~ msgstr "\" și în plus"
+
+#, fuzzy
+#~ msgid "Get OpenID"
+#~ msgstr "URL OpenID"
+
+#, fuzzy
+#~ msgid "Create Account"
+#~ msgstr "creaţi un cont"
+
+#~ msgid "answer permanent link"
+#~ msgstr "legătură permanentă întrebare"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "vezi toate etichetele"
+
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "%(question_author)s a ales acest răspuns ca fiind cel corect"
+
+#~ msgid "Related tags"
+#~ msgstr "Etichete asemămătoare"
+
+#~ msgid "Ask a question"
+#~ msgstr "Puneți o întrebare"
+
+#~ msgid "Badges summary"
+#~ msgstr "Sumar insigne"
+
+#~ msgid "gold badge description"
+#~ msgstr "descriere insignă de aur"
+
+#~ msgid "silver badge description"
+#~ msgstr "descriere insignă de argint"
+
+#~ msgid "bronze badge description"
+#~ msgstr "descriere insignă de bronz"
+
+#~ 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 ""
+#~ "Este un site pentru întrebări și răspunsuri, nu un grup de discuții. De "
+#~ "aceea evitați purtarea unor discuții în răspunsurile dumneavoastră, mai "
+#~ "ales că funcția pentru comentarii permite ceva spațiu pentru discuții "
+#~ "scurte."
+
+#~ msgid "Rep system summary"
+#~ msgstr "Sumar al sistemului de reputație"
+
+#~ msgid "use tags"
+#~ msgstr "utilizează etichete"
+
+#~ msgid "what is gravatar"
+#~ msgstr "ce este gravatarul"
+
+#~ msgid "gravatar faq info"
+#~ msgstr "informații utile despre gravatar"
+
+#, fuzzy
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "îmi place această postare (efectuați clic din nou pentru a anula)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "îmi place acest răspuns (efectuați clic din nou pentru a anula)"
+
+#, fuzzy
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr ""
+#~ "nu îmi place această postare (efectuați clic din nou pentru a anula)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "nu îmi place acest răspuns (efectuați clic din nou pentru a anula)"
+
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] "afișează încă <strong>%(counter)s</strong> comentariu"
+#~ msgstr[1] "afișează încă <strong>%(counter)s</strong> comentarii"
+#~ msgstr[2] "afișează încă <strong>%(counter)s</strong> de comentarii"
+
+#~ msgid "posts per page"
+#~ msgstr "postări pe pagină"
+
+#~ msgid "Change tags"
+#~ msgstr "Schimbă etichetele"
+
+#~ msgid "reputation"
+#~ msgstr "reputație"
+
+#~ msgid "oldest answers"
+#~ msgstr "cele mai vechi întrebări"
+
+#~ msgid "newest answers"
+#~ msgstr "cele mai noi răspunsuri"
+
+#~ msgid "popular answers"
+#~ msgstr "răspunsuri populare"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr "puteți răspunde anonim și vă puteți autentifica după aceea"
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr "răspunde propriei întrebări doar pentru a oferi un răspuns"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr "vă rugăm să dați doar răspunsul, fără discuții"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Autentifică-te / înregistrează-te pentru a adăuga răspunsul"
+
+#~ msgid "Answer the question"
+#~ msgstr "Răspunde întrebării"
+
+#~ msgid "question asked"
+#~ msgstr "întrebare cu răspuns"
+
+#~ msgid "question was seen"
+#~ msgstr "întrebarea a fost văzută de"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr "Notifică-mă o dată pe zi când apar răspunsuri noi"
+
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr "Notifică-mă imediat ce apar răspunsuri noi"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr ""
+#~ "Puteți oricând să modificați frecvența notificărilor mergând la pagina "
+#~ "%(profile_url)s"
+
+#~ msgid "email subscription settings info"
+#~ msgstr "informații configurări abonamente email"
+
+#~ msgid "Stop sending email"
+#~ msgstr "Nu mai trimite emailuri"
+
+#~ msgid "user website"
+#~ msgstr "pagină web utilizator"
+
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] "<span class=\"count\">%(counter)s</span> răspuns"
+#~ msgstr[1] "<span class=\"count\">%(counter)s</span> răspunsuri"
+#~ msgstr[2] "<span class=\"count\">%(counter)s</span> de răspunsuri"
+
+#~ msgid "reputation history"
+#~ msgstr "istorie reputație"
+
+#~ msgid "recent activity"
+#~ msgstr "activitate recentă"
+
+#~ msgid "casted votes"
+#~ msgstr "voturi date"
+
+#~ msgid "answer tips"
+#~ msgstr "indicații pentru răspunsuri"
+
+#~ msgid "please try to provide details"
+#~ msgstr "încercați să furnizați detalii"
+
+#~ msgid "ask a question"
+#~ msgstr "pune o întrebare"
+
+#, fuzzy
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ " see %(email_validation_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "este necesar %(email)s valid pentru a posta, \n"
+#~ " vezi %(email_validation_faq_url)s\n"
+#~ " "
+
+#, fuzzy
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Autentifică-te / înregistrează-te pentru a adăuga răspunsul"
+
+#~ msgid "question tips"
+#~ msgstr "indicii căutare"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "puneți o întrebare relevantă"
+
+#~ msgid "logout"
+#~ msgstr "ieșire"
+
+#~ msgid "login"
+#~ msgstr "autentificare"
+
+#~ msgid "no items in counter"
+#~ msgstr "nu sunt elemente în contor"
+
+#~ msgid "choose password"
+#~ msgstr "alegeți parola"
+
+#~ msgid "retype password"
+#~ msgstr "retastați parola"
+
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d %(badge_level)s insignă"
+#~ msgstr[1] "%(badge_count)d %(badge_level)s insigne"
+#~ msgstr[2] "%(badge_count)d %(badge_level)s de insigne"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "reputația utilizatorului în comunitate"
+
+#, fuzzy
+#~ msgid "Please log in to ask questions"
+#~ msgstr "autentificați-vă pentru a pune o întrebare"
+
#~ msgid "question content must be > 10 characters"
#~ msgstr "conținutul întrebării trebuie să fie mai lung decât 10 caractere"
@@ -6821,9 +7407,6 @@ msgstr "ne pare rău dar se pare că avem unele dificultăți tehnice"
#~ msgid "Question tags"
#~ msgstr "Etichete întrebare"
-#~ msgid "questions"
-#~ msgstr "întrebări"
-
#~ msgid "search"
#~ msgstr "caută"
@@ -6833,9 +7416,6 @@ msgstr "ne pare rău dar se pare că avem unele dificultăți tehnice"
#~ msgid "In:"
#~ msgstr "În:"
-#~ msgid "Sort by:"
-#~ msgstr "Ordonează după:"
-
#~ msgid "Email (not shared with anyone):"
#~ msgstr "Email (nu este dezvăluit altor părți):"
diff --git a/askbot/locale/ro/LC_MESSAGES/djangojs.po b/askbot/locale/ro/LC_MESSAGES/djangojs.po
index a1263b39..26105f4f 100644
--- a/askbot/locale/ro/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/ro/LC_MESSAGES/djangojs.po
@@ -2,12 +2,11 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: Askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:57-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,11 +14,12 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 "
+"== 0) && (n != 0))) ? 2: 1));\n"
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -37,38 +37,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -76,146 +76,76 @@ msgstr ""
msgid "loading..."
msgstr ""
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr ""
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr ""
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr ""
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr ""
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr ""
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+msgid "please confirm removal of offensive flag"
+msgstr ""
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr ""
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr ""
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr ""
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr ""
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr ""
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr ""
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr ""
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr ""
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr ""
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -235,114 +165,113 @@ msgstr[1] ""
"#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
msgstr[2] "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] ""
+"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+"#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
+msgstr[1] ""
+"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+"#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
+msgstr[2] "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
diff --git a/askbot/locale/ru/LC_MESSAGES/django.po b/askbot/locale/ru/LC_MESSAGES/django.po
index cce3e594..277419e0 100644
--- a/askbot/locale/ru/LC_MESSAGES/django.po
+++ b/askbot/locale/ru/LC_MESSAGES/django.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-11 22:42-0500\n"
-"PO-Revision-Date: 2012-03-09 09:49+0000\n"
+"POT-Creation-Date: 2012-04-18 18:49-0500\n"
+"PO-Revision-Date: 2012-03-30 13:12+0000\n"
"Last-Translator: olloff <olloff@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.net/projects/p/askbot/language/"
"ru/)\n"
@@ -82,10 +82,9 @@ msgstr ""
#: forms.py:149
msgid "content"
-msgstr "основное содержание"
+msgstr "содержание"
-#: forms.py:185 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "тэги"
@@ -99,20 +98,20 @@ msgid_plural ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tags can "
"be used."
msgstr[0] ""
-"Тег это короткое ключевое слово без пробелов. До %(max_tags)d тега может "
-"быть использованно."
+"Тэг это короткое ключевое слово без пробелов. Вы можете использовать до "
+"%(max_tags)d тэга одновременно."
msgstr[1] ""
-"Теги это короткие ключевые слова без пробелов. До %(max_tags)d тегов может "
-"быть использованно."
+"Тэг это короткое ключевое слово без пробелов. Вы можете использовать до "
+"%(max_tags)d тэгов одновременно."
msgstr[2] ""
-"Теги это короткие ключевые слова без пробелов. До %(max_tags)d тегов может "
-"быть использованно."
+"Тэг это короткое ключевое слово без пробелов. Вы можете использовать до "
+"%(max_tags)d тэгов одновременно."
-#: forms.py:221 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "тэги обязательны"
-#: forms.py:230
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
@@ -120,12 +119,12 @@ msgstr[0] "пожалуйста введите не более %(tag_count)d с
msgstr[1] "пожалуйста введите не более %(tag_count)d слов"
msgstr[2] "пожалуйста введите не более %(tag_count)d слов"
-#: forms.py:238
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "Необходим хотя бы один из следующих тэгов : %(tags)s"
-#: forms.py:247
+#: forms.py:249
#, 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"
@@ -133,17 +132,17 @@ msgstr[0] "каждый тэг должен содержать не более %
msgstr[1] "каждый тэг должен содержать не более %(max_chars)d знаков"
msgstr[2] "каждый тэг должен содержать не более %(max_chars)d знаков"
-#: forms.py:256
+#: forms.py:258
msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:292
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-"вопрос сообщества (вы не получите карму и все участники смогут редактировать "
-"этот вопрос)"
+"wiki-вопрос (вы не получите очки репутации и все участники смогут "
+"редактировать этот вопрос)"
-#: forms.py:293
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -151,11 +150,11 @@ msgstr ""
"если вы отметите опцию \"Вики сообщества\", то вопрос и ответ не дадут вам "
"кармы и имя автора не будет отображаться"
-#: forms.py:309
+#: forms.py:311
msgid "update summary:"
msgstr "информация об обновлениях:"
-#: forms.py:310
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -163,59 +162,60 @@ msgstr ""
"кратко опишите здесь суть вашей правки (например - исправление орфографии, "
"грамматики, стиля, это необязательно)"
-#: forms.py:384
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Введите количество очков которые Вы собираетесь вычесть или добавить"
-#: forms.py:398 const/__init__.py:253
+#: forms.py:400 const/__init__.py:253
msgid "approved"
-msgstr "простой гражданин"
+msgstr "одобрен"
-#: forms.py:399 const/__init__.py:254
+#: forms.py:401 const/__init__.py:254
msgid "watched"
-msgstr "поднадзорный пользователь"
+msgstr "под надзором"
-#: forms.py:400 const/__init__.py:255
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
-msgstr "ограниченный в правах"
+msgstr "ограничен в правах"
-#: forms.py:401 const/__init__.py:256
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
-msgstr "заблокированный пользователь"
+msgstr "заблокирован"
-#: forms.py:403
+#: forms.py:405
msgid "administrator"
msgstr "администратор"
-#: forms.py:404 const/__init__.py:252
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "модератор"
-#: forms.py:424
+#: forms.py:426
msgid "Change status to"
-msgstr "Измененить статус на"
+msgstr "Изменить статус на"
-#: forms.py:451
+#: forms.py:453
msgid "which one?"
-msgstr "который?"
+msgstr "выберите"
-#: forms.py:472
+#: forms.py:474
msgid "Cannot change own status"
msgstr "Невозможно изменить собственный статус"
-#: forms.py:478
+#: forms.py:480
msgid "Cannot turn other user to moderator"
-msgstr "У Вас нет возможности давать другим пользователям статус модератора"
+msgstr ""
+"У Вас нет возможности присваивать другим пользователям статус модератора"
-#: forms.py:485
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "У Вас нет возможности изменять статус модераторов"
-#: forms.py:491
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "Невозможно изменить статус администратора"
-#: forms.py:497
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -224,49 +224,54 @@ msgstr ""
"Если Вы хотите изменить статус пользователя %(username)s, это можно сделать "
"здесь"
-#: forms.py:506
+#: forms.py:508
msgid "Subject line"
msgstr "Тема"
-#: forms.py:513
+#: forms.py:515
msgid "Message text"
msgstr "Текст сообщения"
-#: forms.py:528
+#: forms.py:530
msgid "Your name (optional):"
msgstr "Ваше имя (не обязательно):"
-#: forms.py:529
+#: forms.py:531
msgid "Email:"
msgstr ""
"<strong>Ваш E-mail</strong> (<i>адрес должен быть правильным, никогда не "
"показывается другим пользователям</i>)"
-#: forms.py:531
+#: forms.py:533
msgid "Your message:"
msgstr "Ваше сообщение:"
-#: forms.py:536
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "Я не хочу оставлять свой E-mail адрес или получать на него ответы:"
-#: forms.py:558
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
"Пожалуйста, отметьте поле \"Я не хочу оставлять свой адрес электронной почты"
"\"."
-#: forms.py:597
+#: forms.py:599
msgid "ask anonymously"
msgstr "спросить анонимно"
-#: forms.py:599
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
"Поставьте галочку, если не хотите раскрывать свою личность, когда задаете "
"вопрос"
-#: forms.py:752
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
@@ -274,11 +279,11 @@ msgstr ""
"Вы задали вопрос анонимно, если решите раскрыть свою личность, отметьте эту "
"опцию."
-#: forms.py:756
+#: forms.py:773
msgid "reveal identity"
msgstr "раскрыть личность"
-#: forms.py:814
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
@@ -286,7 +291,7 @@ msgstr ""
"Простите, только создатель анонимного вопроса может раскрыть свою личность, "
"пожалуйста, снимите галочку."
-#: forms.py:827
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -296,82 +301,99 @@ msgstr ""
"анонимно. Пожалуйста, отметьте опцию \"раскрыть личность\" или перезагрузите "
"эту страницу и попробуйте отредактировать вопрос снова."
-#: forms.py:871
+#: forms.py:888
msgid "Real name"
msgstr "Настоящее имя"
-#: forms.py:878
+#: forms.py:895
msgid "Website"
-msgstr "Вебсайт"
+msgstr "Веб-страница"
-#: forms.py:885
+#: forms.py:902
msgid "City"
msgstr "Город"
-#: forms.py:894
+#: forms.py:911
msgid "Show country"
msgstr "Показать страну"
-#: forms.py:899
+#: forms.py:916
msgid "Date of birth"
-msgstr "День рождения"
+msgstr "Дата рождения"
-#: forms.py:900
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "показывается только возраст, формат ГГГГ-ММ-ДД"
-#: forms.py:906
+#: forms.py:923
msgid "Profile"
msgstr "Профиль"
-#: forms.py:915
+#: forms.py:932
msgid "Screen name"
msgstr "Отображаемое имя"
-#: forms.py:946 forms.py:947
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "этот email-адрес уже зарегистрирован, пожалуйста введите другой"
-#: forms.py:954
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Выберите тип фильтра по темам (ключевым словам)"
-#: forms.py:1001
+#: forms.py:1018
msgid "Asked by me"
msgstr "Заданные мной"
-#: forms.py:1004
+#: forms.py:1021
msgid "Answered by me"
msgstr "Отвеченные мной"
-#: forms.py:1007
+#: forms.py:1024
msgid "Individually selected"
-msgstr "Выбранные индивидуально"
+msgstr "Выбранные мной"
-#: forms.py:1010
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
-msgstr "Весь форум (фильтрованный по темам)"
+msgstr "Весь форум (фильтрованный по тэгам)"
-#: forms.py:1014
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Сообщения в которых упоминается моё имя"
-#: forms.py:1095
+#: forms.py:1112
msgid "please choose one of the options above"
msgstr "пожалуйста сделайте Ваш выбор (см. выше)"
-#: forms.py:1098
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "хорошо - попробуем!"
-#: forms.py:1101
+#: forms.py:1118
#, fuzzy, python-format
msgid "no %(sitename)s email please, thanks"
msgstr "не хочу получать сообщения по email"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
+
#: urls.py:41
msgid "about/"
-msgstr "about/"
+msgstr "o-nas/"
#: urls.py:42
msgid "faq/"
@@ -379,7 +401,7 @@ msgstr "faq/"
#: urls.py:43
msgid "privacy/"
-msgstr "privacy/"
+msgstr "politika-informacii/"
#: urls.py:44
msgid "help/"
@@ -391,11 +413,11 @@ msgstr "otvety/"
#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
-msgstr "edit/"
+msgstr "redaktirovat/"
#: urls.py:51 urls.py:117
msgid "revisions/"
-msgstr "revisions/"
+msgstr "versii/"
#: urls.py:61
msgid "questions"
@@ -408,19 +430,19 @@ msgstr "voprosy/"
#: urls.py:82
msgid "ask/"
-msgstr "sprashivaem/"
+msgstr "sprosit/"
#: urls.py:92
msgid "retag/"
-msgstr "izmenyaem-temy/"
+msgstr "smenit-tag/"
#: urls.py:97
msgid "close/"
-msgstr "zakryvaem/"
+msgstr "zakrit/"
#: urls.py:102
msgid "reopen/"
-msgstr "otkryvaem-zanovo/"
+msgstr "otkrit-snova/"
#: urls.py:107
msgid "answer/"
@@ -428,7 +450,7 @@ msgstr "otvet/"
#: urls.py:112
msgid "vote/"
-msgstr "golosuem/"
+msgstr "zolosovat/"
#: urls.py:123
msgid "widgets/"
@@ -436,15 +458,15 @@ msgstr "widgets/"
#: urls.py:158
msgid "tags/"
-msgstr "temy/"
+msgstr "tegi/"
#: urls.py:201
msgid "subscribe-for-tags/"
-msgstr "subscribe-for-tags/"
+msgstr "podpisatsya-na-tagi/"
#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
-msgstr "lyudi/"
+msgstr "polzovateli/"
#: urls.py:219
msgid "subscriptions/"
@@ -452,7 +474,7 @@ msgstr "podpiski/"
#: urls.py:231
msgid "users/update_has_custom_avatar/"
-msgstr "users/update_has_custom_avatar/"
+msgstr "polzovateli/obnovlenie_so_svoim_avatarom/"
#: urls.py:236 urls.py:241
msgid "badges/"
@@ -460,19 +482,19 @@ msgstr "nagrady/"
#: urls.py:246
msgid "messages/"
-msgstr "soobsheniya/"
+msgstr "soobscheniya/"
#: urls.py:246
msgid "markread/"
-msgstr "otmechaem-prochitannoye/"
+msgstr "pometit-kak-prochitanoe/"
#: urls.py:262
msgid "upload/"
-msgstr "zagruzhaem-file/"
+msgstr "zagruzit/"
#: urls.py:263
msgid "feedback/"
-msgstr "obratnaya-svyaz/"
+msgstr "otziv/"
#: urls.py:305
msgid "question/"
@@ -481,7 +503,7 @@ msgstr "vopros/"
#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
-msgstr "account/"
+msgstr "polzovatel/"
#: conf/access_control.py:8
msgid "Access control settings"
@@ -514,7 +536,7 @@ msgstr "Хороший ответ: минимум голосов за ответ
#: conf/badges.py:59
msgid "Good Answer: minimum upvotes for the answer"
-msgstr " Замечательный ответ: минимум голосов за ответ"
+msgstr "Замечательный ответ: минимум голосов за ответ"
#: conf/badges.py:68
msgid "Great Answer: minimum upvotes for the answer"
@@ -598,7 +620,7 @@ msgstr "Электронная почта и система оповещений
#: conf/email.py:24
msgid "Prefix for the email subject line"
-msgstr "Префикс для электронной почты в строке темы"
+msgstr "Префикс для темы письма"
#: conf/email.py:26
msgid ""
@@ -636,8 +658,8 @@ msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-"Опция для выбора частоты обновлений, отправляемых через E-mail для: "
-"вопросов, которые задал пользователь."
+"Опция для выбора частоты обновлений, отправляемых через email для: вопросов, "
+"которые задал пользователь."
#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
@@ -740,8 +762,7 @@ msgstr "Макс. число отосланных напоминаний для
#: conf/email.py:227
msgid "Require email verification before allowing to post"
-msgstr ""
-"Требовать подтверждения адреса электронной почты перед публикацией сообщений"
+msgstr "Требовать подтверждения email-адреса перед публикацией сообщений"
#: conf/email.py:228
msgid ""
@@ -752,17 +773,17 @@ msgstr ""
#: conf/email.py:237
msgid "Allow only one account per email address"
-msgstr "Позволить только один аккаунт на каждый электронный почтовый адрес"
+msgstr "Разрешить только один аккаунт на каждый email-адрес"
#: conf/email.py:246
msgid "Fake email for anonymous user"
-msgstr "Поддельный адрес электронной почты для анонимного пользователя"
+msgstr "Поддельный email-адрес для анонимного пользователя"
#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-"Используйте эту установку для аватара пользователей которые не ввели адрес "
-"электронной почты."
+"Эта установка предназначена для управления аватаром пользователей которые не "
+"ввели email-адрес."
#: conf/email.py:256
msgid "Allow posting questions by email"
@@ -778,7 +799,7 @@ msgstr ""
#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
-msgstr "Заменить пробелы на тире в тэгах, присланных по электронной почте."
+msgstr "Заменить пробелы на тире в тэгах, присланных по email."
#: conf/email.py:271
msgid ""
@@ -786,7 +807,26 @@ msgid ""
"by email"
msgstr ""
"Эта настройка применяется к тэгам, записанным в поле \"Тема\" вопросов, "
-"присланных по электронной почте."
+"присланных по email."
+
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "Разрешить задавать вопросы по email"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
#: conf/external_keys.py:11
msgid "Keys for external services"
@@ -794,7 +834,7 @@ msgstr "Ключи для внешних сервисов"
#: conf/external_keys.py:19
msgid "Google site verification key"
-msgstr "Идентификационный ключ Google"
+msgstr "Идентификационный ключ для сайта Google"
#: conf/external_keys.py:21
#, python-format
@@ -808,7 +848,7 @@ msgstr ""
#: conf/external_keys.py:36
msgid "Google Analytics key"
-msgstr "Ключ для активации сервиса \"Google-Analytics\""
+msgstr "Ключ для активации сервиса \"Google Analytics\""
#: conf/external_keys.py:38
#, python-format
@@ -839,7 +879,7 @@ msgid ""
"a>"
msgstr ""
"Recaptcha - это инструмент, который помогает отличить реальных людей от "
-"назойливых спам-ботов. Пожалуйста, получите и опубликуйте ключ на <a href="
+"назойливых спам-ботов. Пожалуйста, получите этот и публичный ключ на <a href="
"\"%(url)s\">%(url)s</a>"
#: conf/external_keys.py:84
@@ -876,7 +916,7 @@ msgstr ""
#: conf/external_keys.py:120
msgid "Twitter consumer secret"
-msgstr "Секретный ключ для доступа Twitter API (consumer secret)"
+msgstr "Секретный ключ Twitter API (consumer secret)"
#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
@@ -924,7 +964,7 @@ msgid ""
"Save, then <a href=\"http://validator.w3.org/\">use HTML validator</a> on "
"the \"about\" page to check your input."
msgstr ""
-"Сохраните, затем <a href=\"http://validator.w3.org/\">используйте HTML "
+"Сохраните, а затем <a href=\"http://validator.w3.org/\">используйте HTML "
"валидатор</a> на странице \"о нас\" для проверки правильности ввода."
#: conf/flatpages.py:32
@@ -955,11 +995,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr "Правила отображения и хранения данных"
-#: conf/forum_data_rules.py:22
-#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
+#, fuzzy, python-format
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
"Включить встраивание видео. <em>Внимание: пожалуйста, сначала прочитайте <a "
"href=\"%(url)s>этот документ</a>.</em>"
@@ -982,12 +1024,7 @@ msgstr ""
#: conf/forum_data_rules.py:56
msgid "Allow posting before logging in"
-msgstr ""
-"<span class=\"strong big\">Вы можете начать задавать свои вопросы анонимно</"
-"span>. При добавлении вопроса, вас перенаправит на страницу входа/"
-"регистрации. Ваш вопрос будет сохранен в текущей сессии и будет опубликован "
-"после входа. Вход и регистрация на сайте очень просты: вход на сайт займет у "
-"вас около 30 секунд, а начальная регистрация - минуту или менее."
+msgstr "Разрешить оставлять сообщения до входа на сайт"
#: conf/forum_data_rules.py:58
msgid ""
@@ -1017,7 +1054,7 @@ msgstr ""
#: conf/forum_data_rules.py:87
msgid "Maximum length of tag (number of characters)"
-msgstr "Максимальное количество букв в теге (ключевом слове)"
+msgstr "Максимальное количество букв в тэге"
#: conf/forum_data_rules.py:96
msgid "Minimum length of title (number of characters)"
@@ -1032,10 +1069,15 @@ msgid "Minimum length of answer body (number of characters)"
msgstr "Минимальная длинна ответа (количество символов)"
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr "тэги обязательны"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr "Обязательные тэги"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
@@ -1044,11 +1086,11 @@ msgstr ""
"отредактированного вопроса. Обязательный тэг может быть со \"звездочкой\", "
"если тэги со \"звездочкой\" включены."
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr "Принудительно перевести тэги в нижний регистр"
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
@@ -1058,22 +1100,22 @@ msgstr ""
"базу данных и запустите команду: <code>python manage.py fix_question_tags</"
"code> чтобы глобально переименовать тэги"
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr "Формат списка тэгов"
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
"Выберите формат, в котором будут отображаться тэги: обычный список или "
"\"облако\" тэгов"
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "Использовать тэги со \"звездочкой\""
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
@@ -1082,51 +1124,51 @@ msgstr ""
"выбор многих тэгов за раз, у правильного тэга со \"звездочкой\" есть только "
"одна \"звездочка\" в самом конце"
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr "Число комментариев по-умолчанию, которое показывается под сообщениями"
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
"Максимальная длина комментария не должна превышать %(max_len)s символов"
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr "Ограничить время на редактирование комментариев"
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
"Если галочка снята, время на редактирование комментариев не будет ограничено"
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr "Время на редактирование комментария в минутах"
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr "Чтобы включить эту настройку также включите предыдущую"
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr "Сохранять комментарий нажатием клавиши <Enter>"
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr "Минимальная длина поискового запроса в AJAX поиске"
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
"Значение должно равняться соответствующей установке в Вашей базе данных"
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr "Не позволять запросу \"прилипать\" к поисковой строке"
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
@@ -1136,15 +1178,15 @@ msgstr ""
"полезно, если вы хотите сдвинуть поисковую строку с ее обычного положения "
"или вам не нравится обычное \"залипание\" поискового запроса."
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
-msgstr "Наибольшее разрешенное количество ключевых слов (тегов) на вопрос"
+msgstr "Максимум тэгов на один вопрос"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
-msgstr "Количество вопросов отображаемых на главной странице"
+msgstr "Количество вопросов отображаемых на странице"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "Что должен означать \"неотвеченный вопрос\"?"
@@ -1206,7 +1248,8 @@ msgstr ""
"того что б убедится что она правильная и работает во всех браузерах"
#: conf/license.py:13
-msgid "Content LicensContent License"
+#, fuzzy
+msgid "Content License"
msgstr "Содержимое лицензии"
#: conf/license.py:21
@@ -1349,7 +1392,7 @@ msgid ""
"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)"
msgstr ""
"Примечание - <strong>MathJax не входит в askbot</strong> - вы должны "
-"разместить его лично, желательно на отдельном домене и ввести URL, "
+"подключить его самостоятельно, желательно на отдельном домене и ввести URL, "
"указывающий на \"mathjax\" каталог (например: http://mysite.com/mathjax)"
#: conf/markup.py:91
@@ -1406,7 +1449,7 @@ msgstr ""
#: conf/minimum_reputation.py:12
msgid "Karma thresholds"
-msgstr "Предельные значения кармы"
+msgstr "Предельные значения репутации"
#: conf/minimum_reputation.py:22
msgid "Upvote"
@@ -1426,35 +1469,35 @@ msgstr "Принять собственный ответ"
#: conf/minimum_reputation.py:58
msgid "Flag offensive"
-msgstr "Пометить как спам"
+msgstr "Помечать спам"
#: conf/minimum_reputation.py:67
msgid "Leave comments"
-msgstr "Добавить комментарии"
+msgstr "Добавлять комментарии"
#: conf/minimum_reputation.py:76
msgid "Delete comments posted by others"
-msgstr "Удалить чужие комментарии"
+msgstr "Удалять чужие комментарии"
#: conf/minimum_reputation.py:85
msgid "Delete questions and answers posted by others"
-msgstr "Удалить любые вопросы или ответы"
+msgstr "Удалять чужие вопросы или ответы"
#: conf/minimum_reputation.py:94
msgid "Upload files"
-msgstr "Загрузить файлы"
+msgstr "Загружать файлы"
#: conf/minimum_reputation.py:103
msgid "Close own questions"
-msgstr "Закрыть собственные вопросы"
+msgstr "Закрывать собственные вопросы"
#: conf/minimum_reputation.py:112
msgid "Retag questions posted by other people"
-msgstr "Изменить теги вопросов, заданных другими"
+msgstr "Изменять тэги чужих вопросов"
#: conf/minimum_reputation.py:121
msgid "Reopen own questions"
-msgstr "Заново открыть свои вопросы"
+msgstr "Заново открывать свои вопросы"
#: conf/minimum_reputation.py:130
msgid "Edit community wiki posts"
@@ -1462,19 +1505,19 @@ msgstr "Редактировать сообщения, помеченные ка
#: conf/minimum_reputation.py:139
msgid "Edit posts authored by other people"
-msgstr "Править чужие сообщения"
+msgstr "Редактировать сообщения, измененные другими пользователями"
#: conf/minimum_reputation.py:148
msgid "View offensive flags"
-msgstr "Просмотреть отметки неуместного контента"
+msgstr "Просматривать отметки о неуместном контенте"
#: conf/minimum_reputation.py:157
msgid "Close questions asked by others"
-msgstr "Закрыть чужие вопросы"
+msgstr "Закрывать чужие вопросы"
#: conf/minimum_reputation.py:166
msgid "Lock posts"
-msgstr "Заблокировать посты"
+msgstr "Блокировать сообщения"
#: conf/minimum_reputation.py:175
msgid "Remove rel=nofollow from own homepage"
@@ -1488,9 +1531,13 @@ msgstr ""
"Когда поисковый робот увидит аттрибут rel=nofollow на ссылке, такая ссылка "
"не будет учитываться для рассчета рейтинга сайта."
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
-msgstr "Правила увеличения и уменьшения кармы"
+msgstr "Правила увеличения и уменьшения репутации"
#: conf/reputation_changes.py:23
msgid "Maximum daily reputation gain per user"
@@ -1498,59 +1545,62 @@ msgstr "Максимальный рост репутации пользоват
#: conf/reputation_changes.py:32
msgid "Gain for receiving an upvote"
-msgstr "Увeличение репутации за положительный голос"
+msgstr "Увеличение репутации за положительный голос"
#: conf/reputation_changes.py:41
msgid "Gain for the author of accepted answer"
-msgstr "Увeличение репутации для автора принятого ответа"
+msgstr "Увеличение репутации для автора принятого ответа"
#: conf/reputation_changes.py:50
msgid "Gain for accepting best answer"
-msgstr "Увeличение репутации за пометку лучшего ответа"
+msgstr "Увеличение репутации за пометку лучшего ответа"
#: conf/reputation_changes.py:59
msgid "Gain for post owner on canceled downvote"
-msgstr "Увeличение репутации автора сообщения при отмене отрицательного голоса"
+msgstr "Увеличение репутации автора сообщения при отмене отрицательного голоса"
#: conf/reputation_changes.py:68
msgid "Gain for voter on canceling downvote"
-msgstr "Увeличение репутации голосующего при отмене голоса \"против\""
+msgstr "Увеличение репутации голосующего при отмене отрицательного голоса"
#: conf/reputation_changes.py:78
msgid "Loss for voter for canceling of answer acceptance"
-msgstr "Потеря для голосующего при отмене выбора лучшего ответа "
+msgstr "Потеря репутации для голосующего при отмене выбора лучшего ответа "
#: conf/reputation_changes.py:88
msgid "Loss for author whose answer was \"un-accepted\""
-msgstr "Потеря для автора сообщения при отмене выбора лучшего ответа"
+msgstr "Потеря репутации для автора сообщения при отмене выбора лучшего ответа"
#: conf/reputation_changes.py:98
msgid "Loss for giving a downvote"
-msgstr "Потеря для голосующего \"против\""
+msgstr "Потеря репутации за отрицательный голос"
#: conf/reputation_changes.py:108
msgid "Loss for owner of post that was flagged offensive"
-msgstr "Потеря для автора, чье сообщение было помечено как неприемлемое"
+msgstr ""
+"Потеря репутации для автора, чье сообщение было помечено как неуместное"
#: conf/reputation_changes.py:118
msgid "Loss for owner of post that was downvoted"
-msgstr "Потеря для автора, чье сообщение получило голос \"против\""
+msgstr ""
+"Потеря репутации для автора, чье сообщение получило отрицательный голос"
#: conf/reputation_changes.py:128
msgid "Loss for owner of post that was flagged 3 times per same revision"
msgstr ""
-"Потеря для автора, чье сообщение было помечено как неприемлемое трижды на "
-"одну и ту же правку"
+"Потеря репутации для автора, чье сообщение было помечено как неуместное "
+"трижды на одну и ту же правку"
#: conf/reputation_changes.py:138
msgid "Loss for owner of post that was flagged 5 times per same revision"
msgstr ""
-"Потеря для автора, чье сообщение было помечено как неприемлемое пять раз на "
-"одну и ту же правку"
+"Потеря репутации для автора, чье сообщение было помечено как неуместное пять "
+"раз на одну и ту же правку"
#: conf/reputation_changes.py:148
msgid "Loss for post owner when upvote is canceled"
-msgstr "Потеря для автора, чье сообщение потеряло голос \"за\""
+msgstr ""
+"Потеря репутации для автора, чье сообщение потеряло положительный голос"
#: conf/sidebar_main.py:12
msgid "Main page sidebar"
@@ -1840,11 +1890,11 @@ msgstr "Цвет шрифта для ответов = MAX"
#: conf/skin_counter_settings.py:251
msgid "Background color for accepted"
-msgstr "Цвет фона для принятых"
+msgstr "Цвет фона для \"Лучших ответов\""
#: conf/skin_counter_settings.py:261
msgid "Foreground color for accepted answer"
-msgstr "Цвет шрифта для принятых ответов"
+msgstr "Цвет шрифта для \"Лучших ответов\""
#: conf/skin_general_settings.py:15
msgid "Logos and HTML <head> parts"
@@ -1857,8 +1907,7 @@ msgstr "Главный логотип"
#: conf/skin_general_settings.py:25
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-"Чтобы заменить логотип, выберите новый файл затем нажмите кнопку \"сохранить"
-"\""
+"Чтобы сменить логотип, выберите новый файл затем нажмите кнопку \"Сохранить\""
#: conf/skin_general_settings.py:37
msgid "Show logo"
@@ -1868,11 +1917,14 @@ msgstr "Показывать логотип"
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
-msgstr "Отметьте если Вы хотите использовать логотип в головной части форум"
+msgstr ""
+"Отметьте опцию если Вы хотите использовать логотип в головной части форума "
+"или снимите отметку в случае, если Вы не хотите чтобы логотип появлялся в "
+"позиции по-умолчанию."
#: conf/skin_general_settings.py:51
msgid "Site favicon"
-msgstr "Фавикон для Вашего сайта"
+msgstr "favicon для Вашего сайта"
#: conf/skin_general_settings.py:53
#, python-format
@@ -1936,7 +1988,7 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
"<strong>Чтобы использовать эту настройку</strong>, включите настройку "
-"\"Персонализировать HTML-тег &lt;HEAD&gt;\". Содержимое этого поля будет "
+"\"Персонализировать HTML-тэг &lt;HEAD&gt;\". Содержимое этого поля будет "
"включено в тег &lt;HEAD&gt; и в нем могут задаваться такие элементы как &lt;"
"script&gt;, &lt;link&gt;, &lt;meta&gt;. Пожалуйста, имейте в виду, что "
"добавление внешнего javascript-кода в &lt;HEAD&gt; не рекомендуется, "
@@ -2106,7 +2158,7 @@ msgstr "Защита от спама с помощью Akismet"
#: conf/spam_and_moderation.py:18
msgid "Enable Akismet spam detection(keys below are required)"
-msgstr "Включить защиту от спама Akismet (необходимы ключ в поле ниже)"
+msgstr "Включить защиту от спама Akismet (необходим ключ в поле ниже)"
#: conf/spam_and_moderation.py:21
#, python-format
@@ -2153,13 +2205,7 @@ msgstr "Разрешить пользователям менять их элек
#: conf/user_settings.py:41
msgid "Allow account recovery by email"
-msgstr ""
-"<span class=\"strong big\">Вы можете добавлять свои вопросы анонимно</span>. "
-"При добавлении сообщения, вас перенаправит на страницу регистрации/входа на "
-"сайт. Ваш вопрос будет сохранен в текущей сессии и будет опубликован после "
-"того как вы войдете на сайт. Процесс регистрации/входа на сайт очень прост: "
-"вход на сайт займет у вас около 30 секунд, начальная регистрация потребует 1 "
-"минуты или менее."
+msgstr "Разрешить восстановление пароля по email"
#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
@@ -2184,18 +2230,18 @@ msgid "Use automatic avatars from gravatar.com"
msgstr "Использовать аватары с сервиса gravatar.com"
#: conf/user_settings.py:85
-#, fuzzy, python-format
+#, fuzzy
msgid ""
"Check this option if you want to allow the use of gravatar.com for avatars. "
-"Please, note that this feature might take about 10 minutes to become "
-"100% effective. You will have to enable uploaded avatars as well. For more "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
"html#uploaded-avatars\">this page</a>."
msgstr ""
"Включите эту опцию если вы хотите разрешить использовать gravatar.com для "
-"аватар. Имейте в виду что эта функция может занять приблизительно 10 минут "
-"для того что б стать максимально эффективной. Вы сможете загружать также "
-"аватары. Для большей информации посетите <a href=\"http://askbot.org/doc/"
+"аватаров. Имейте в виду, что любые изменения в этой функции вступят в силу "
+"приблизительно через 10 минут. Вы также можете загружать аватары. Для "
+"получения дополнительной информации посетите <a href=\"http://askbot.org/doc/"
"optional-modules.html#uploaded-avatars\">эту страницу</a>."
#: conf/user_settings.py:97
@@ -2231,11 +2277,11 @@ msgstr "Максимальное количество меток на одног
#: conf/vote_rules.py:42
msgid "Threshold for warning about remaining daily votes"
-msgstr "Порог предупреждения об оставшихся ежедневных голосах "
+msgstr "Порог для предупреждения об оставшихся за день голосах "
#: conf/vote_rules.py:51
msgid "Number of days to allow canceling votes"
-msgstr "Количество дней, в течение которых можно отменить голос"
+msgstr "Число дней, в течение которых можно отменить голос"
#: conf/vote_rules.py:60
msgid "Number of days required before answering own question"
@@ -2335,7 +2381,7 @@ msgstr "новые"
#: const/__init__.py:44 skins/default/templates/users.html:27
#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
-msgstr "старые"
+msgstr "бывалым"
#: const/__init__.py:45
msgid "active"
@@ -2356,13 +2402,13 @@ msgstr "самые холодные"
#: const/__init__.py:49
#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
-msgstr "больше голосов"
+msgstr "лучшие"
#: const/__init__.py:50
msgid "least voted"
msgstr "меньше голосов"
-#: const/__init__.py:51 const/message_keys.py:23
+#: const/__init__.py:51
msgid "relevance"
msgstr "уместность"
@@ -2402,23 +2448,23 @@ msgstr "задан вопрос"
#: const/__init__.py:126
msgid "answered a question"
-msgstr "дан ответ"
+msgstr "ответил"
#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
-msgstr "прокомментированный вопрос"
+msgstr "прокомментирован вопрос"
#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
-msgstr "прокомментированный ответ"
+msgstr "прокомментирован ответ"
#: const/__init__.py:129
msgid "edited question"
-msgstr "отредактированный вопрос"
+msgstr "отредактирован вопрос"
#: const/__init__.py:130
msgid "edited answer"
-msgstr "отредактированный ответ"
+msgstr "отредактирован ответ"
#: const/__init__.py:131
#, fuzzy
@@ -2484,12 +2530,12 @@ msgstr "упомянуто в тексте сообщения"
#: const/__init__.py:202
#, fuzzy
msgid "answered question"
-msgstr "дан ответ"
+msgstr "ответил"
#: const/__init__.py:205
#, fuzzy
msgid "accepted answer"
-msgstr "отредактированный ответ"
+msgstr "отредактирован ответ"
#: const/__init__.py:209
msgid "[closed]"
@@ -2499,7 +2545,7 @@ msgstr "[закрыт]"
msgid "[deleted]"
msgstr "[удален]"
-#: const/__init__.py:211 views/readers.py:565
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "изначальная версия"
@@ -2521,7 +2567,7 @@ msgstr "только избранные"
#: const/__init__.py:226
msgid "instantly"
-msgstr "немедленно "
+msgstr "сразу же"
#: const/__init__.py:227
msgid "daily"
@@ -2533,7 +2579,7 @@ msgstr "еженедельно"
#: const/__init__.py:229
msgid "no email"
-msgstr "не посылать email"
+msgstr "не слать email"
#: const/__init__.py:236
msgid "identicon"
@@ -2587,29 +2633,29 @@ msgstr "наиболее похожие вопросы"
msgid "click to see most relevant questions"
msgstr "нажмите чтобы увидеть наиболее похожие вопросы"
+#: const/message_keys.py:23
+msgid "by relevance"
+msgstr "схожесть"
+
#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "нажмите, чтобы увидеть старые вопросы"
#: const/message_keys.py:25
-#, fuzzy
-msgid "date"
-msgstr "Обновить"
+msgid "by date"
+msgstr "дате"
#: const/message_keys.py:26
msgid "click to see the newest questions"
-msgstr "нажмите, чтобы увидеть последние вопросы"
+msgstr "нажмите, чтобы увидеть самые новые вопросы"
#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
-msgstr "нажмите, чтобы посмотреть последние обновленные вопросы"
+msgstr "нажмите, чтобы посмотреть недавно обновленные вопросы"
#: const/message_keys.py:28
-#: skins/default/templates/user_profile/user_recent.html:4
-#: skins/default/templates/user_profile/user_tabs.html:29
-#: skins/default/templates/user_profile/user_tabs.html:31
-msgid "activity"
-msgstr "активность"
+msgid "by activity"
+msgstr "активности"
#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
@@ -2620,27 +2666,24 @@ msgid "click to see the least answered questions"
msgstr "нажмите чтобы увидеть вопросы с наименьшим числом ответов"
#: const/message_keys.py:31
-#, fuzzy
-msgid "answers"
-msgstr "otvety/"
+msgid "by answers"
+msgstr "ответам"
#: const/message_keys.py:32
msgid "click to see the most answered questions"
-msgstr "нажмите чтобы увидеть вопросы с наимбольшим числом ответов"
+msgstr "нажмите чтобы просмотреть вопросы с наибольшим числом ответов"
#: const/message_keys.py:33
msgid "click to see least voted questions"
-msgstr "нажмите, чтобы просмотреть последние отмеченные голосами вопросы"
+msgstr "нажмите, чтобы просмотреть вопросы, за которые голосовали менее всего"
#: const/message_keys.py:34
-#: skins/default/templates/user_profile/user_tabs.html:36
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "голосов"
+msgid "by votes"
+msgstr "голосам"
#: const/message_keys.py:35
msgid "click to see most voted questions"
-msgstr "нажмите, чтобы просмотреть вопросы с большим числом голосов"
+msgstr "нажмите, чтобы просмотреть вопросы с наибольшим числом голосов"
#: const/message_keys.py:40
msgid ""
@@ -2649,7 +2692,7 @@ msgid ""
"reach a resolution."
msgstr ""
-#: const/message_keys.py:45 models/__init__.py:787
+#: const/message_keys.py:45 models/__init__.py:788
msgid ""
"Sorry, your account appears to be suspended and you cannot make new posts "
"until this issue is resolved. You can, however edit your existing posts. "
@@ -2661,7 +2704,7 @@ msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-"Приветствуем! Пожалуйста добавьте E-mail адрес (это важно!) в свой профиль "
+"Приветствуем! Пожалуйста добавьте email адрес (это важно!) в свой профиль "
"пользователя и измените отображаемое имя, если это необходимо."
#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
@@ -2692,7 +2735,7 @@ msgstr "Пароли не подходят"
#: deps/django_authopenid/forms.py:297
#, python-format
msgid "Please choose password > %(len)s characters"
-msgstr "Пожалуйста, выберите пароль > %(len)s символов"
+msgstr "Пожалуйста, введите пароль > %(len)s символов"
#: deps/django_authopenid/forms.py:335
msgid "Current password"
@@ -2756,7 +2799,7 @@ msgid "%(site)s user name and password"
msgstr "имя пользователя и пароль на %(site)s"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "Создайте новый аккаунт с именем и паролем"
@@ -2931,7 +2974,7 @@ msgstr "Главная"
#: deps/livesettings/values.py:128
msgid "Base Settings"
-msgstr "Базовые настройки"
+msgstr "Основные настройки"
#: deps/livesettings/values.py:235
msgid "Default value: \"\""
@@ -2962,7 +3005,7 @@ msgstr "Документация"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:136
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Изменить пароль"
@@ -3013,7 +3056,7 @@ msgstr "Все параметры конфигурации должны быть
#: deps/livesettings/templates/livesettings/site_settings.html:66
#, python-format
msgid "Group settings: %(name)s"
-msgstr "Настройки групп: %(name)s"
+msgstr "Настройки группы: %(name)s"
#: deps/livesettings/templates/livesettings/site_settings.html:93
msgid "Uncollapse all"
@@ -3023,50 +3066,6 @@ msgstr "Развернуть все"
msgid "Congratulations, you are now an Administrator"
msgstr "Поздравляем, теперь Вы администратор на нашем форуме"
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-"<p>Чтобы задавать вопросы по E-mail, пожалуйста:</p>\n"
-"<ul>\n"
-" <li>Отформатируйте поле темы как: [Тэг1; Тэг2] Заголовок вопроса</li>\n"
-" <li>Введите содержимое своего вопроса в теле письма</li>\n"
-"</ul>\n"
-"<p>Учтите, что тэги могут содержать более одного слова и могут быть отделены "
-"друг-от-друга запятой или точкой с запятой</p>\n"
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-"<p>Извините, произошла ошибка при добавлении вашего вопроса, пожалуйста "
-"свяжитесь с администратором сайта %(site)s</p>"
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-"<p>Извините, чтобы отправлять вопросы на сайт %(site)s через E-mail, "
-"пожалуйста <a href=\"%(url)s\">сначала зарегистрируйтесь</a></p>"
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-"<p>Извините, ваш вопрос невозможно добавить, поскольку у вашей учетной "
-"записи недостаточно прав</p>"
-
#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
@@ -3139,7 +3138,7 @@ msgstr[2] "%(question_count)d неотвеченных вопросов на т
msgid "Please log in to use %s"
msgstr "Пожалуйста войдите чтобы использовать %s"
-#: models/__init__.py:319
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
@@ -3147,7 +3146,7 @@ msgstr ""
"К сожалению, вы не можете принять или не принять лучший ответ, потому что "
"ваша учетная запись заблокирована"
-#: models/__init__.py:323
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
@@ -3155,7 +3154,7 @@ msgstr ""
"К сожалению, вы не можете принять или не принять лучший ответ, потому что "
"ваша учетная запись приостановлена"
-#: models/__init__.py:336
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
@@ -3164,14 +3163,14 @@ msgstr ""
">%(points)s очков необходимо чтобы принять или отклонить ваш собственный "
"ответ на ваш собственный вопрос"
-#: models/__init__.py:358
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
"Извините, вы сможете принять этот ответ только через %(will_be_able_at)s"
-#: models/__init__.py:366
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
@@ -3180,44 +3179,44 @@ msgstr ""
"Извините, только модераторы или автор вопроса - %(username)s - могут "
"принимать или отклонять лучший ответ"
-#: models/__init__.py:389
+#: models/__init__.py:390
#, fuzzy
msgid "Sorry, you cannot vote for your own posts"
msgstr "нельзя голосовать за собственные сообщения"
-#: models/__init__.py:393
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "К сожалению, ваша учетная запись заблокирована"
-#: models/__init__.py:398
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "К сожалению, ваша учетная запись приостановлена"
-#: models/__init__.py:408
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr "для повышения рейтинга требуется минимум %(points)s баллов "
-#: models/__init__.py:414
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr "для понижения рейтинга требуется минимум %(points)s баллов"
-#: models/__init__.py:429
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "К сожалению, заблокированные пользователи не могут загружать файлы"
-#: models/__init__.py:430
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr ""
"К сожалению, временно блокированные пользователи не могут загружать файлы"
-#: models/__init__.py:432
+#: models/__init__.py:433
#, python-format
msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3235,29 +3234,29 @@ msgstr[2] ""
"Извините, комментарии (кроме последнего) можно редактировать только "
"%(minutes)s минут после добавления"
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
"К сожалению, только владелец или модератор может редактировать комментарий"
-#: models/__init__.py:518
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
"К сожалению, так как ваш аккаунт приостановлен вы можете комментировать "
"только свои собственные сообщения"
-#: models/__init__.py:522
+#: models/__init__.py:523
#, 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 ""
"К сожалению, для комментирования любого сообщения требуется %(min_rep)s "
-"балов кармы. Вы можете комментировать только свои собственные сообщения и "
-"ответы на ваши вопросы"
+"баллов репутации. Вы можете комментировать только свои собственные сообщения "
+"и ответы на ваши вопросы"
-#: models/__init__.py:552
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
@@ -3265,7 +3264,7 @@ msgstr ""
"Этот пост был удален, его может увидеть только владелец, администраторы "
"сайта и модераторы"
-#: models/__init__.py:569
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
@@ -3273,19 +3272,19 @@ msgstr ""
"Извините, только модераторы, администраторы сайта и владельцы сообщения "
"могут редактировать удаленные сообщения"
-#: models/__init__.py:584
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
"К сожалению, так как Ваш учетная запись заблокирована Вы не можете "
"редактировать сообщения"
-#: models/__init__.py:588
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
"К сожалению, так как ваша учетная запись приостановлена вы можете "
"редактировать только ваши собственные сообщения"
-#: models/__init__.py:593
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
@@ -3293,7 +3292,7 @@ msgstr ""
"К сожалению, для редактирования вики сообщений, требуется %(min_rep)s баллов "
"кармы"
-#: models/__init__.py:600
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
@@ -3302,7 +3301,7 @@ msgstr ""
"К сожалению, для редактировать сообщения других пользователей, требуется "
"%(min_rep)s балов кармы"
-#: models/__init__.py:663
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3319,20 +3318,20 @@ msgstr[2] ""
"К сожалению, Вы не может удалить ваш вопрос, поскольку на него ответили "
"другие пользователи и их ответы получили положительные голоса"
-#: models/__init__.py:678
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять "
"сообщения"
-#: models/__init__.py:682
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
"К сожалению, так как Ваша учетная запись приостановлена Вы не можете удалять "
"сообщения"
-#: models/__init__.py:686
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
@@ -3341,19 +3340,19 @@ msgstr ""
"К сожалению, для удаления сообщений других пользователей, требуется "
"%(min_rep)s балов кармы"
-#: models/__init__.py:706
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована вы не можете закрыть "
"вопросы"
-#: models/__init__.py:710
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
"К сожалению, так как Ваша учетная запись приостановлена вы не можете закрыть "
"вопросы"
-#: models/__init__.py:714
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
@@ -3362,14 +3361,14 @@ msgstr ""
"К сожалению, для закрытия сообщения других пользователей, требуется "
"%(min_rep)s балов кармы"
-#: models/__init__.py:723
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
"К сожалению, для закрытия своего вопроса, требуется %(min_rep)s балов кармы"
-#: models/__init__.py:747
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
@@ -3378,7 +3377,7 @@ msgstr ""
"К сожалению, только администраторы, модераторы или владельцы с кармой >"
"%(min_rep)s может открыть вопрос"
-#: models/__init__.py:753
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
@@ -3386,49 +3385,49 @@ msgstr ""
"К сожалению, чтобы вновь открыть собственный вопрос требуется %(min_rep)s "
"баллов кармы"
-#: models/__init__.py:774
+#: models/__init__.py:775
msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-#: models/__init__.py:782
+#: models/__init__.py:783
#, fuzzy
msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять "
"сообщения"
-#: models/__init__.py:793
+#: models/__init__.py:794
#, fuzzy, python-format
msgid ""
"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
"required"
msgstr "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
-#: models/__init__.py:814
+#: models/__init__.py:815
#, python-format
msgid ""
"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
"offensive flags per day."
msgstr ""
-#: models/__init__.py:826
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr "нельзя удалить несуществующий флаг"
-#: models/__init__.py:832
+#: models/__init__.py:833
#, fuzzy
msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять "
"сообщения"
-#: models/__init__.py:836
+#: models/__init__.py:837
msgid ""
"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
msgstr ""
-#: models/__init__.py:842
+#: models/__init__.py:843
#, fuzzy, python-format
msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgid_plural ""
@@ -3437,15 +3436,15 @@ msgstr[0] "К сожалению, для изменения тегов треб
msgstr[1] "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
msgstr[2] "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
-#: models/__init__.py:861
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr "у вас нету прав чтобы удалить все обжалованные сообщения"
-#: models/__init__.py:862
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr "без заметок на эту запись"
-#: models/__init__.py:886
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
@@ -3453,62 +3452,62 @@ msgstr ""
"К сожалению, только владельцы, администраторы сайта и модераторы могут "
"менять теги к удаленным вопросам"
-#: models/__init__.py:893
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована вы не можете поменять "
"теги вопроса "
-#: models/__init__.py:897
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
"К сожалению, так как Ваша учетная запись приостановлена вы можете менять "
"теги только на свои вопросы"
-#: models/__init__.py:901
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
-#: models/__init__.py:920
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять "
"комментарий"
-#: models/__init__.py:924
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
"К сожалению, так как Ваша учетная запись приостановлена вы можете удалять "
"только ваши собственные комментарии"
-#: models/__init__.py:928
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-"К сожалению, для удаления комментариев требуется %(min_rep)s баллов кармы"
+"К сожалению, для удаления комментариев требуется %(min_rep)s баллов репутации"
-#: models/__init__.py:952
+#: models/__init__.py:953
msgid "sorry, but older votes cannot be revoked"
msgstr ""
-#: models/__init__.py:1438 utils/functions.py:78
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "%(date)s"
-#: models/__init__.py:1440
+#: models/__init__.py:1471
msgid "in two days"
msgstr "через два дня"
-#: models/__init__.py:1442
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr "завтра"
-#: models/__init__.py:1444
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
@@ -3516,7 +3515,7 @@ msgstr[0] "через %(hr)d час"
msgstr[1] "через %(hr)d часа"
msgstr[2] "через %(hr)d часов"
-#: models/__init__.py:1446
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
@@ -3524,7 +3523,7 @@ msgstr[0] "через %(min)d минуту"
msgstr[1] "через %(min)d минуты"
msgstr[2] "через %(min)d минут"
-#: models/__init__.py:1447
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
@@ -3532,7 +3531,7 @@ msgstr[0] "%(days)d день"
msgstr[1] "%(days)d дня"
msgstr[2] "%(days)d дней"
-#: models/__init__.py:1449
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
@@ -3542,83 +3541,83 @@ msgstr ""
"возможность ответить на свой собственный вопрос. Вы можете ответить через "
"%(left)s"
-#: models/__init__.py:1622 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "Аноним"
-#: models/__init__.py:1718
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "Администратор сайта"
-#: models/__init__.py:1720
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "С уважением, Модератор форума"
-#: models/__init__.py:1722
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Приостановленный пользователь "
-#: models/__init__.py:1724
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Заблокированный пользователь"
-#: models/__init__.py:1726
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "Зарегистрированный пользователь"
-#: models/__init__.py:1728
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Видный пользователь"
-#: models/__init__.py:1730
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Утвержденный Пользователь"
-#: models/__init__.py:1839
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
-msgstr "%(reputation)s кармы %(username)s "
+msgstr "Репутация пользователя %(username)s равна %(reputation)s"
-#: models/__init__.py:1849
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
-msgstr[0] "<span class=\"hidden\">%(count)d</span>золотая медаль"
-msgstr[1] "%(count)d золотых медалей"
-msgstr[2] "%(count)d золотых медалей"
+msgstr[0] "%(count)d золотая награда"
+msgstr[1] "%(count)d золотых наград"
+msgstr[2] "%(count)d золотых наград"
-#: models/__init__.py:1856
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
-msgstr[0] "<span class=\"hidden\">%(count)d</span>серебряная медаль"
-msgstr[1] "%(count)d серебряных медалей"
+msgstr[0] "%(count)d серебряная награда"
+msgstr[1] "%(count)d серебряных наград"
msgstr[2] "%(count)d серебряных медалей"
-#: models/__init__.py:1863
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
-msgstr[0] "<span class=\"hidden\">%(count)d</span>бронзовая медаль"
+msgstr[0] "%(count)d бронзовая награда"
msgstr[1] "%(count)d бронзовых медалей"
msgstr[2] "%(count)d бронзовых медалей"
-#: models/__init__.py:1874
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s и %(item2)s"
-#: models/__init__.py:1878
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
-msgstr "%(user)s имеет %(badges)s"
+msgstr "У пользователя %(user)s - %(badges)s наград"
-#: models/__init__.py:2354
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr "\"%(title)s\""
-#: models/__init__.py:2491
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -3627,7 +3626,7 @@ msgstr ""
"Поздравляем, вы получили '%(badge_name)s'. Проверьте свой <a href="
"\"%(user_profile)s\">профиль</a>."
-#: models/__init__.py:2694 views/commands.py:457
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr "Ваша подписка на тэги была сохранена"
@@ -3935,6 +3934,11 @@ msgstr "\" и \"%s\""
msgid "\" and more"
msgstr "\" и более"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Проверить email-адрес"
+
#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
@@ -4001,17 +4005,17 @@ msgstr "Раз в неделю"
msgid "No email"
msgstr "Отменить"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Пожалуйста, введите ваше <span>имя пользователя</span>, затем войдите"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr "(или выберите один из методов входа выше)"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
-#: skins/common/templates/authopenid/signin.html:106
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr "Войти"
@@ -4073,7 +4077,7 @@ msgstr "Отменить"
#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
-msgstr "Проверить адрес электронной почты"
+msgstr "Проверить email-адрес"
#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
@@ -4139,7 +4143,7 @@ msgstr ""
#: skins/common/templates/authopenid/changeemail.html:102
#, fuzzy
msgid "Validation email not sent"
-msgstr "Проверить адрес электронной почты"
+msgstr "Проверить email-адрес"
#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
@@ -4216,9 +4220,10 @@ msgid "Following the link above will help us verify your email address."
msgstr "Перейдя по ссылке выше, вы поможете нам проверить ваш email."
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
"Если вы считаете, что сообщение было отправлено по ошибке - никаких "
@@ -4238,7 +4243,7 @@ msgid ""
"However, you still may be logged in to your OpenID provider. Please logout "
"of your provider if you wish to do so."
msgstr ""
-"Тем не менее , Вы все еще можете авторизироватся с помощью Вашего OpenID. "
+"Тем не менее , Вы все еще можете авторизоватся с помощью Вашего OpenID. "
"Пожалуйста выйдите с текущей сессии если вы хотите это сделать. "
#: skins/common/templates/authopenid/signin.html:4
@@ -4269,14 +4274,15 @@ msgstr ""
"после того, как вы войдёте.</span>"
#: skins/common/templates/authopenid/signin.html:28
+#, fuzzy
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
-"Выберите изображение вашего сервиса для безопасного входа через OpenID или "
-"подобной технологии. Пароль от вашей внешней службе будет всегда "
-"конфиденциальным и вам не надо запоминать или создавать ещё один."
+"Для входа на сайт выберите службу OpenID или подобную ей технологию. Пароль "
+"от этой внешней службы останется конфиденциальным и вам не нужно запоминать "
+"или создавать ещё один."
#: skins/common/templates/authopenid/signin.html:31
msgid ""
@@ -4301,7 +4307,7 @@ msgid ""
"Click on one of the icons below to add a new login method or re-validate an "
"existing one."
msgstr ""
-"Кликние на одной из иконок ниже чтобы добавить метод входа или проверить уже "
+"Нажмите на одной из иконок ниже чтобы добавить метод входа или проверить уже "
"существующий."
#: skins/common/templates/authopenid/signin.html:39
@@ -4320,86 +4326,92 @@ msgstr ""
"Пожалуйста, проверьте ваш email и пройдите по ссылке чтобы вновь войти в ваш "
"аккаунт"
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+#, fuzzy
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr ""
"Пожалуйста, введите ваше <span>имя пользователя и пароль</span>, затем "
"войдите"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Пожалуйста, войдите здесь:"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr "Вход завершился неудачей, попробуйте ещё раз"
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr "Логин или email"
-#: skins/common/templates/authopenid/signin.html:101 utils/forms.py:169
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Пароль"
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
"Чтобы изменить ваш пароль &mdash; пожалуйста, введите новый дважды и "
"подтвердите ввод"
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr "Новый пароль "
-#: skins/common/templates/authopenid/signin.html:126
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr "Пожалуйста, повторите"
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr "Ваши текущие методы входа"
-#: skins/common/templates/authopenid/signin.html:154
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr "провайдер"
-#: skins/common/templates/authopenid/signin.html:155
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr "последний использованный"
-#: skins/common/templates/authopenid/signin.html:156
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr "удалите, если хотите"
-#: skins/common/templates/authopenid/signin.html:170
+#: skins/common/templates/authopenid/signin.html:177
#: skins/common/templates/question/answer_controls.html:13
-#: skins/common/templates/question/question_controls.html:10
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "удалить"
-#: skins/common/templates/authopenid/signin.html:172
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr "не может быть удалено"
-#: skins/common/templates/authopenid/signin.html:185
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr "По-прежнему проблемы со входом ?"
-#: skins/common/templates/authopenid/signin.html:190
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr "Пожалуйста, введите ваш email-адрес ниже и получите новый ключ"
-#: skins/common/templates/authopenid/signin.html:192
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
"Пожалуйста, введите ваш email-адрес ниже чтобы восстановить ваш аккаунт"
-#: skins/common/templates/authopenid/signin.html:195
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr "восстановить ваш аккаунт по email"
-#: skins/common/templates/authopenid/signin.html:206
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr "Отправить новый ключ восстановления"
-#: skins/common/templates/authopenid/signin.html:208
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr "Восстановить ваш аккаунт используя email"
@@ -4514,25 +4526,25 @@ msgid "link"
msgstr "ссылка"
#: skins/common/templates/question/answer_controls.html:13
-#: skins/common/templates/question/question_controls.html:10
+#: skins/common/templates/question/question_controls.html:4
msgid "undelete"
msgstr "восстановить"
#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
msgid "remove offensive flag"
-msgstr "Просмотреть отметки неуместного контента"
+msgstr "Просматривать отметки о неуместном контенте"
#: skins/common/templates/question/answer_controls.html:21
-#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:16
msgid "remove flag"
msgstr "убрать заметку"
#: skins/common/templates/question/answer_controls.html:26
#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
#: skins/common/templates/question/question_controls.html:20
-#: skins/common/templates/question/question_controls.html:26
-#: skins/common/templates/question/question_controls.html:33
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
@@ -4541,14 +4553,14 @@ msgstr ""
#: skins/common/templates/question/answer_controls.html:28
#: skins/common/templates/question/answer_controls.html:37
-#: skins/common/templates/question/question_controls.html:28
-#: skins/common/templates/question/question_controls.html:35
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "спам"
#: skins/common/templates/question/answer_controls.html:41
-#: skins/common/templates/question/question_controls.html:42
-#: skins/default/templates/macros.html:307
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
#: skins/default/templates/revisions.html:38
#: skins/default/templates/revisions.html:41
msgid "edit"
@@ -4577,32 +4589,39 @@ msgstr ""
msgid "close date %(closed_at)s"
msgstr "дата закрытия: %(closed_at)s"
-#: skins/common/templates/question/question_controls.html:12
+#: skins/common/templates/question/question_controls.html:6
msgid "reopen"
msgstr "переоткрыть"
-#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:8
#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "закрыть"
-#: skins/common/templates/question/question_controls.html:41
+#: skins/common/templates/question/question_controls.html:35
msgid "retag"
msgstr "изменить тег"
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
msgstr "одно из этого обязательно"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "тэги"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(обязательно)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Включить/выключить предварительный просмотр текста"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
@@ -4625,7 +4644,7 @@ msgstr "Избранные теги"
#: skins/common/templates/widgets/tag_selector.html:19
#: skins/common/templates/widgets/tag_selector.html:36
msgid "add"
-msgstr "добавить"
+msgstr "доб"
#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
@@ -4708,7 +4727,7 @@ msgstr "пожалуйста сообщите об ошибке админист
#: skins/default/templates/500.jinja.html:12
msgid "see latest questions"
-msgstr "смотреть последние вопросы"
+msgstr "смотреть самые новые вопросы"
#: skins/default/templates/500.jinja.html:13
msgid "see tags"
@@ -4780,13 +4799,13 @@ msgstr "%(description)s"
#: skins/default/templates/badge.html:14
msgid "user received this badge:"
msgid_plural "users received this badge:"
-msgstr[0] "пользователь, получивших этот значок:"
+msgstr[0] "пользователь, получивший этот значок:"
msgstr[1] "пользователей, получивших этот значок:"
msgstr[2] "пользователей, получивших этот значок:"
#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
-msgstr "Значки"
+msgstr "Награды"
#: skins/default/templates/badges.html:7
msgid "Community gives you awards for your questions, answers and votes."
@@ -4799,13 +4818,13 @@ msgid ""
" of times each type of badge has been awarded. Have ideas about fun \n"
"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
-"Ниже приведен список доступных наград и число награждений каждым из них. "
+"Ниже приведен список доступных наград и число награждений каждой из них. "
"Есть идея о новой классной награде? Тогда отправьте её нам через <a "
"href='%(feedback_faq_url)s'>обратную связь</a>\n"
#: skins/default/templates/badges.html:36
msgid "Community badges"
-msgstr "Значки отличия"
+msgstr "Уровни наград"
#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
@@ -4821,19 +4840,19 @@ msgstr ""
#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
-msgstr "серебряная медаль: иногда присуждается за большой вклад"
+msgstr "серебряная награда: как правило, присуждается за большой вклад"
#: skins/default/templates/badges.html:51
#, fuzzy
msgid ""
"msgid \"silver badge: occasionally awarded for the very high quality "
"contributions"
-msgstr "серебряная медаль: иногда присуждается за большой вклад"
+msgstr "серебряная награда: как правило, присуждается за большой вклад"
#: skins/default/templates/badges.html:54
#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
-msgstr "бронзовый значок: часто даётся как особая заслуга"
+msgstr "бронзовая награда: часто даётся за особые заслуги"
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
@@ -4932,7 +4951,7 @@ msgstr ""
#: skins/default/templates/faq_static.html:20
#, fuzzy
msgid "How does karma system work?"
-msgstr "Как работает карма?"
+msgstr "Как работает репутация?"
#: skins/default/templates/faq_static.html:21
msgid ""
@@ -5128,7 +5147,7 @@ msgstr "(Пожалуйста введити капчу)"
#: skins/default/templates/feedback.html:63
msgid "Send Feedback"
-msgstr "Отправить отзыв"
+msgstr "Отправить"
#: skins/default/templates/feedback_email.txt:2
#, python-format
@@ -5206,7 +5225,7 @@ msgid ""
" follow users and conversations and report inappropriate content by "
"flagging it."
msgstr ""
-"Кроме того, вы можете @упоминать пользователей в тексте, что-бы привлечь их "
+"Кроме того, вы можете @упоминать пользователей в тексте, чтобы привлечь их "
"внимание, подписывайтесь на пользователей и разговоры, и уведомляйте о "
"неуместном содержании отмечая его."
@@ -5348,25 +5367,42 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr "<p>С уважением,<br/>Администрация Форума</p>"
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
#: skins/default/templates/macros.html:5
#, python-format
msgid "Share this question on %(site)s"
msgstr "Поделиться этим вопросом на %(site)s"
#: skins/default/templates/macros.html:16
-#: skins/default/templates/macros.html:432
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr "подписатся %(alias)s"
#: skins/default/templates/macros.html:19
-#: skins/default/templates/macros.html:435
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr "отменить подписку %(alias)s"
#: skins/default/templates/macros.html:20
-#: skins/default/templates/macros.html:436
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr "подписан %(alias)s"
@@ -5389,8 +5425,9 @@ msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-"Это wiki сообщение.\n"
-" Любой с кармой &gt;%(wiki_min_rep)s может улучшить его."
+"Это wiki-сообщение.\n"
+" Любой пользователь с репутацией &gt;%(wiki_min_rep)s может улучшить "
+"его."
#: skins/default/templates/macros.html:88
msgid "asked"
@@ -5408,81 +5445,81 @@ msgstr "опубликовал"
msgid "updated"
msgstr "обновил"
-#: skins/default/templates/macros.html:198
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "смотри вопросы с тегами '%(tag)s' "
-#: skins/default/templates/macros.html:300
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "удалить этот комментарий"
-#: skins/default/templates/macros.html:503 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "%(username)s Gravatar"
-#: skins/default/templates/macros.html:512
+#: skins/default/templates/macros.html:516
#, python-format
msgid "%(username)s's website is %(url)s"
msgstr "сайт %(username)s это %(url)s"
-#: skins/default/templates/macros.html:527
-#: skins/default/templates/macros.html:528
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "предыдущая"
-#: skins/default/templates/macros.html:539
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "текущая страница"
-#: skins/default/templates/macros.html:541
-#: skins/default/templates/macros.html:548
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
#, fuzzy, python-format
msgid "page %(num)s"
msgstr "страница номер %(num)s"
-#: skins/default/templates/macros.html:552
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "следующая страница"
-#: skins/default/templates/macros.html:603
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr "ответы пользователю %(username)s"
-#: skins/default/templates/macros.html:606
-#, python-format
+#: skins/default/templates/macros.html:610
+#, fuzzy, python-format
msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
-msgstr[0] "вы получили %(response_count)s новый ответ"
+msgstr[0] "вы получили новый ответ"
msgstr[1] "вы получили %(response_count)s новых ответа"
msgstr[2] "вы получили %(response_count)s новых ответов"
-#: skins/default/templates/macros.html:609
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "новых ответов нет"
-#: skins/default/templates/macros.html:624
-#: skins/default/templates/macros.html:625
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "%(new)s новых помеченых сообщений и %(seen)s предыдущих"
-#: skins/default/templates/macros.html:627
-#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr "%(new)s новых неуместных сообщений"
-#: skins/default/templates/macros.html:633
-#: skins/default/templates/macros.html:634
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr "%(seen)s неуместных сообщений"
@@ -5491,22 +5528,38 @@ msgstr "%(seen)s неуместных сообщений"
msgid "Questions"
msgstr "Вопросы"
-#: skins/default/templates/question.html:98
+#: skins/default/templates/question.html:110
#, fuzzy
msgid "post a comment / <strong>some</strong> more"
msgstr "смотреть ещё <strong>%(counter)s</strong>"
-#: skins/default/templates/question.html:101
+#: skins/default/templates/question.html:113
#, fuzzy
msgid "see <strong>some</strong> more"
msgstr "смотреть ещё <strong>%(counter)s</strong>"
-#: skins/default/templates/question.html:105
+#: skins/default/templates/question.html:117
#: skins/default/templates/question/javascript.html:20
#, fuzzy
msgid "post a comment"
msgstr "добавить комментарий"
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Ответьте на собственный вопрос"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "Ваш ответ"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Войти/Зарегистрироваться для ответа"
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
msgid "Edit question"
@@ -5573,6 +5626,13 @@ msgstr "Открыть повторно этот вопрос?"
msgid "Reopen this question"
msgstr "Открыть повторно этот вопрос"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5612,15 +5672,15 @@ msgstr "Список тегов"
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
-msgstr "Сортировать по &raquo;"
+msgstr "Сорт. по &raquo;"
#: skins/default/templates/tags.html:19
msgid "sorted alphabetically"
-msgstr "отсортированный в алфавитном порядке "
+msgstr "отсортировано в алфавитном порядке "
#: skins/default/templates/tags.html:20
msgid "by name"
-msgstr "по имени"
+msgstr "имени"
#: skins/default/templates/tags.html:25
msgid "sorted by frequency of tag use"
@@ -5628,7 +5688,7 @@ msgstr "отсортировано по частоте использовани
#: skins/default/templates/tags.html:26
msgid "by popularity"
-msgstr "по популярности"
+msgstr "популярности"
#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
@@ -5647,7 +5707,7 @@ msgstr "показать пользователей с наивысшим рей
#: skins/default/templates/user_profile/user_reputation.html:4
#: skins/default/templates/user_profile/user_tabs.html:23
msgid "karma"
-msgstr "Карма"
+msgstr "репутации"
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5655,7 +5715,7 @@ msgstr "посмотреть пользователей которые прис
#: skins/default/templates/users.html:21
msgid "recent"
-msgstr "новички"
+msgstr "новичкам"
#: skins/default/templates/users.html:26
msgid "see people who joined the site first"
@@ -5667,7 +5727,7 @@ msgstr "показать пользователей отсортированны
#: skins/default/templates/users.html:33
msgid "by username"
-msgstr "по имени"
+msgstr "имени"
#: skins/default/templates/users.html:39
#, python-format
@@ -5726,11 +5786,11 @@ msgstr ""
#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
-msgstr "Подсказки для поиска:"
+msgstr "Подсказка для поиска:"
#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
-msgstr "добавте теги и запрос для улучшения результатов поиска"
+msgstr "укажите в запросе тэги чтобы уточнить результаты поиска"
#: skins/default/templates/main_page/nothing_found.html:4
msgid "There are no unanswered questions here"
@@ -5792,7 +5852,7 @@ msgstr ""
"включите его в вашем браузере, <a href=\"%(noscript_url)s\">тут описано как "
"это сделать</a>"
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
@@ -5800,7 +5860,7 @@ msgstr[0] "каждый тег должно быть короче чем %(max_c
msgstr[1] "каждый тег должно быть короче чем %(max_chars)s симво"
msgstr[2] "каждый тег должно быть короче чем %(max_chars)s символов"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
@@ -5808,7 +5868,7 @@ msgstr[0] "пожалуйста используйте %(tag_count)s тег"
msgstr[1] "пожалуйста используйте %(tag_count)s тега или меньше"
msgstr[2] "пожалуйста используйте %(tag_count)s тегов или меньше"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5841,7 +5901,7 @@ msgstr[2] ""
#: skins/default/templates/question/answer_tab_bar.html:11
msgid "Sort by »"
-msgstr "Сортировать по »"
+msgstr "Сорт. по »"
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
@@ -5855,11 +5915,6 @@ msgstr "новые ответы будут показаны первыми"
msgid "most voted answers will be shown first"
msgstr "ответы с большим числом голосов будут показаны первыми"
-#: skins/default/templates/question/content.html:40
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer Your Own Question"
-msgstr "Ответьте на собственный вопрос"
-
#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr "Войти/Зарегистрироваться для ответа"
@@ -5870,7 +5925,7 @@ msgstr "Ваш ответ"
#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
-msgstr "Будьте первым, кто ответ на этот вопрос!"
+msgstr "Будьте первым, кто ответит на этот вопрос!"
#: skins/default/templates/question/new_answer_form.html:32
msgid ""
@@ -5901,17 +5956,6 @@ msgid ""
"best questions and answers!"
msgstr ""
-#: skins/default/templates/question/new_answer_form.html:45
-#: skins/default/templates/widgets/ask_form.html:41
-#, fuzzy
-msgid "Login/Signup to Post"
-msgstr "Войти/Зарегистрироваться для ответа"
-
-#: skins/default/templates/question/new_answer_form.html:50
-#, fuzzy
-msgid "Post Your Answer"
-msgstr "Ваш ответ"
-
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
msgid ""
@@ -5929,43 +5973,43 @@ msgstr " или"
msgid "email"
msgstr "почтовый ящик"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr "Закладки и информация"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr "нажмите что б прекратить следить за этим вопросом"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
-msgstr "Отмеченно"
+msgstr "В закладках"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
-msgstr "Убрать закладку"
+msgstr "Снять закладку"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
-msgstr "нажмите, чтобы отслеживать этот вопрос"
+msgstr "нажмите, чтобы добавить этот вопрос в закладки"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
-msgstr "Отслеживать"
+msgstr "В закладки"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] "%(count)s подписчик"
-msgstr[1] "%(count)s подписчиков"
-msgstr[2] "%(count)s подписчики"
+msgstr[1] "%(count)s подписчика"
+msgstr[2] "%(count)s подписчиков"
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
-msgstr "получить обновления по email"
+msgstr "получать обновления по email"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
@@ -5973,37 +6017,37 @@ msgstr ""
"<strong>Здесь</strong> (когда Вы авторизированы) Вы можете подписатся на "
"переодические почтовые обновления о этом вопросе"
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr "Подписаться на rss фид этого вопроса"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr "подписаться на rss ленту новостей"
-#: skins/default/templates/question/sidebar.html:44
+#: skins/default/templates/question/sidebar.html:46
msgid "Stats"
msgstr "Статистика"
-#: skins/default/templates/question/sidebar.html:46
+#: skins/default/templates/question/sidebar.html:48
#, fuzzy
msgid "Asked"
msgstr "спросил"
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "Seen"
msgstr ""
-#: skins/default/templates/question/sidebar.html:49
+#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "раз"
-#: skins/default/templates/question/sidebar.html:52
+#: skins/default/templates/question/sidebar.html:54
#, fuzzy
msgid "Last updated"
-msgstr "последнее обновление"
+msgstr "Обновлен"
-#: skins/default/templates/question/sidebar.html:60
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Похожие вопросы:"
@@ -6030,7 +6074,7 @@ msgstr ""
#: skins/default/templates/user_profile/user.html:12
#, python-format
msgid "%(username)s's profile"
-msgstr "профиль пользователя %(username)s"
+msgstr "Профиль пользователя %(username)s"
#: skins/default/templates/user_profile/user_edit.html:4
msgid "Edit user profile"
@@ -6070,11 +6114,11 @@ msgstr "Обновить"
#: skins/default/templates/user_profile/user_email_subscriptions.html:4
#: skins/default/templates/user_profile/user_tabs.html:42
msgid "subscriptions"
-msgstr "подпискa"
+msgstr "подписки"
#: skins/default/templates/user_profile/user_email_subscriptions.html:7
msgid "Email subscription settings"
-msgstr "Настройка подписки по электронной почте"
+msgstr "Настройка подписок по email"
#: skins/default/templates/user_profile/user_email_subscriptions.html:9
msgid ""
@@ -6100,7 +6144,7 @@ msgstr "отслеживаемые вопросы"
#: skins/default/templates/user_profile/user_inbox.html:18
#: skins/default/templates/user_profile/user_tabs.html:12
msgid "inbox"
-msgstr "входящие"
+msgstr "сообщения"
#: skins/default/templates/user_profile/user_inbox.html:34
msgid "Sections:"
@@ -6171,7 +6215,7 @@ msgstr "настоящее имя"
#: skins/default/templates/user_profile/user_info.html:58
#, fuzzy
msgid "member since"
-msgstr "пользователь с"
+msgstr "зарегистрирован"
#: skins/default/templates/user_profile/user_info.html:63
msgid "last seen"
@@ -6180,7 +6224,7 @@ msgstr "последнее посещение"
#: skins/default/templates/user_profile/user_info.html:69
#, fuzzy
msgid "website"
-msgstr "Вебсайт"
+msgstr "Веб-страница"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -6192,20 +6236,20 @@ msgstr "возраст"
#: skins/default/templates/user_profile/user_info.html:83
msgid "age unit"
-msgstr "возраст"
+msgstr "лет"
#: skins/default/templates/user_profile/user_info.html:88
msgid "todays unused votes"
-msgstr "сегодняшних неиспользованных голосов"
+msgstr "неиспользованных голосов"
#: skins/default/templates/user_profile/user_info.html:89
msgid "votes left"
-msgstr "осталось голосов"
+msgstr "голосов осталось"
#: skins/default/templates/user_profile/user_moderate.html:4
#: skins/default/templates/user_profile/user_tabs.html:48
msgid "moderation"
-msgstr "умеренность"
+msgstr "модерация"
#: skins/default/templates/user_profile/user_moderate.html:8
#, python-format
@@ -6240,7 +6284,7 @@ msgstr "Отнять"
#: skins/default/templates/user_profile/user_moderate.html:39
msgid "Add"
-msgstr "Добавить"
+msgstr "Доб"
#: skins/default/templates/user_profile/user_moderate.html:43
#, python-format
@@ -6333,6 +6377,12 @@ msgstr ""
msgid "%(username)s's network is empty"
msgstr "%(username)s's сеть пуста"
+#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
+#: skins/default/templates/user_profile/user_tabs.html:31
+msgid "activity"
+msgstr "активность"
+
#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
@@ -6340,12 +6390,12 @@ msgstr "источник"
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
-msgstr "История изменений вашей кармы."
+msgstr "История изменений вашей репутации."
#: skins/default/templates/user_profile/user_reputation.html:13
#, python-format
msgid "%(user_name)s's karma change log"
-msgstr "История изменений кармы для %(user_name)s"
+msgstr "История изменения репутации для %(user_name)s"
#: skins/default/templates/user_profile/user_stats.html:5
#: skins/default/templates/user_profile/user_tabs.html:7
@@ -6377,8 +6427,8 @@ msgstr "за ответ проголосовали %(answer_score)s раз"
msgid "(%(comment_count)s comment)"
msgid_plural "the answer has been commented %(comment_count)s times"
msgstr[0] "(%(comment_count)s комментарий)"
-msgstr[1] "этот ответ кометировали %(comment_count)s раза"
-msgstr[2] "этот ответ кометировали %(comment_count)s раз"
+msgstr[1] "этот ответ комментировали %(comment_count)s раза"
+msgstr[2] "этот ответ комментировали %(comment_count)s раз"
#: skins/default/templates/user_profile/user_stats.html:44
#, python-format
@@ -6394,7 +6444,7 @@ msgstr "я \"за\""
#: skins/default/templates/user_profile/user_stats.html:51
msgid "user has voted up this many times"
-msgstr "пользователь проголосовал \"за\" много раз"
+msgstr "голосов \"за\""
#: skins/default/templates/user_profile/user_stats.html:54
msgid "thumb down"
@@ -6402,7 +6452,7 @@ msgstr "я \"против\""
#: skins/default/templates/user_profile/user_stats.html:55
msgid "user voted down this many times"
-msgstr "пользователь проголосовал \"против\" много раз"
+msgstr "голосов \"против\""
#: skins/default/templates/user_profile/user_stats.html:63
#, python-format
@@ -6439,7 +6489,7 @@ msgstr "подписчики и подписанные пользователи"
#: skins/default/templates/user_profile/user_tabs.html:21
#, fuzzy
msgid "Graph of user karma"
-msgstr "график репутации пользователя"
+msgstr "График репутации пользователя"
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
@@ -6449,9 +6499,14 @@ msgstr "вопросы отслеживаемые пользователем"
msgid "user vote record"
msgstr "голос пользователя"
+#: skins/default/templates/user_profile/user_tabs.html:36
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "голоса"
+
#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
-msgstr "настройки подписки по электронной почте"
+msgstr "настройки подписки по email"
#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
@@ -6475,7 +6530,7 @@ msgstr "постарайтесь ответить, а не заниматься
#: skins/default/templates/widgets/question_edit_tips.html:8
#, fuzzy
msgid "provide enough details"
-msgstr "обеспечить достаточно деталей"
+msgstr "сообщите достаточно информации по своему вопросу"
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -6485,7 +6540,7 @@ msgstr "вопрос должен быть четким и лаконичным"
#: skins/default/templates/widgets/answer_edit_tips.html:20
#: skins/default/templates/widgets/question_edit_tips.html:16
msgid "see frequently asked questions"
-msgstr "смотрите на часто задаваемые вопросы"
+msgstr "взгляните на часто задаваемые вопросы"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
@@ -6657,11 +6712,11 @@ msgstr "посмотреть сообщений на которые Вы под
#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
-msgstr "ОТМЕЧЕННЫЕ"
+msgstr "ИЗБРАННЫЕ"
#: skins/default/templates/widgets/scope_nav.html:14
msgid "Please ask your question here"
-msgstr "Задавайте свой вопрос здесь."
+msgstr "Задавайте свой вопрос здесь"
#: skins/default/templates/widgets/user_long_score_and_badge_summary.html:3
msgid "karma:"
@@ -6683,7 +6738,7 @@ msgstr "Пожалуйста, войдите здесь:"
#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
-msgstr "Настройки"
+msgstr "настройки"
#: templatetags/extra_filters_jinja.py:279
#, fuzzy
@@ -6798,6 +6853,50 @@ msgstr[0] "%(min)d минуту назад"
msgstr[1] "%(min)d минут назад"
msgstr[2] "%(min)d минуты назад"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+"<p>Чтобы задавать вопросы по email, пожалуйста:</p>\n"
+"<ul>\n"
+" <li>Отформатируйте поле темы как: [Тэг1; Тэг2] Заголовок вопроса</li>\n"
+" <li>Введите содержимое своего вопроса в теле письма</li>\n"
+"</ul>\n"
+"<p>Учтите, что тэги могут содержать более одного слова и могут быть отделены "
+"друг-от-друга запятой или точкой с запятой</p>\n"
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+"<p>Извините, произошла ошибка при добавлении вашего вопроса, пожалуйста "
+"свяжитесь с администратором сайта %(site)s</p>"
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+"<p>Извините, чтобы отправлять вопросы на сайт %(site)s через E-mail, "
+"пожалуйста <a href=\"%(url)s\">сначала зарегистрируйтесь</a></p>"
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+"<p>Извините, ваш вопрос невозможно добавить, поскольку у вашей учетной "
+"записи недостаточно прав</p>"
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr "Новый аватар успешно загружен."
@@ -6812,12 +6911,12 @@ msgstr "Требуемые аватары успешно удалены."
#: views/commands.py:83
msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "неавторизированные пользователи не имеют доступа к папке \"входящие\""
+msgstr "Неавторизованные пользователи не имеют доступа к папке \"сообщения\""
#: views/commands.py:112
#, fuzzy
msgid "Sorry, anonymous users cannot vote"
-msgstr "неавторизированные пользователи не могут голосовать "
+msgstr "Неавторизованные пользователи не могут голосовать "
#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
@@ -6834,35 +6933,36 @@ msgstr "Извините, что-то не здесь..."
#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
-msgstr ""
-"неавторизированные пользователи не могут отмечать ответы как правильные"
+msgstr "Неавторизованные пользователи не могут отмечать ответы как правильные"
#: views/commands.py:339
#, fuzzy, python-format
msgid ""
"Your subscription is saved, but email address %(email)s needs to be "
"validated, please see <a href=\"%(details_url)s\">more details here</a>"
-msgstr "подписка сохранена, %(email)s требует проверки, см. %(details_url)s"
+msgstr ""
+"Ваша подписка сохранена, но email-адрес %(email)s требует проверки, <a "
+"href='%(details_url)s'>подробнее читайте здесь</a>"
#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "частота обновлений по email была установлена в ежедневную"
-#: views/commands.py:461
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr "Подписка на тэги была отменена (<a href=\"%(url)s\">вернуть</a>)."
-#: views/commands.py:470
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr "Пожалуйста, войдите чтобы подписаться на: %(tags)s"
-#: views/commands.py:596
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr "Пожалуйста, войдите чтобы проголосовать"
-#: views/commands.py:616
+#: views/commands.py:620
#, fuzzy
msgid "Please sign in to delete/restore posts"
msgstr "Пожалуйста, войдите чтобы проголосовать"
@@ -6872,31 +6972,31 @@ msgstr "Пожалуйста, войдите чтобы проголосоват
msgid "About %(site)s"
msgstr "О %(site)s"
-#: views/meta.py:86
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Обратная связь"
-#: views/meta.py:87
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Спасибо за отзыв!"
-#: views/meta.py:96
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr "Мы с нетерпением ждем ваших отзывов!"
-#: views/meta.py:100
+#: views/meta.py:106
msgid "Privacy policy"
msgstr "Политика конфиденциальности"
#: views/readers.py:133
-#, fuzzy, python-format
+#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "Спросил"
msgstr[1] "Спросило"
msgstr[2] "Спросили"
-#: views/readers.py:387
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
@@ -6933,12 +7033,12 @@ msgstr "профиль - голоса"
#: views/users.py:701
#, fuzzy
msgid "user karma"
-msgstr "Карма"
+msgstr "репутации"
#: views/users.py:702
#, fuzzy
msgid "Profile - User's Karma"
-msgstr "профиль - карма пользователя"
+msgstr "Профиль - Репутация Пользователя"
#: views/users.py:720
msgid "users favorite questions"
@@ -6962,24 +7062,24 @@ msgstr "профиль - подписки"
#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
-msgstr "неавторизированные пользователи не могут загружать файлы"
+msgstr "Неавторизованные пользователи не могут загружать файлы"
-#: views/writers.py:70
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "допустимые типы файлов: '%(file_types)s'"
-#: views/writers.py:90
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "максимальный размер загружаемого файла - %(file_size)s K"
-#: views/writers.py:98
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
"Ошибка при загрузке файла. Пожалуйста, свяжитесь с администрацией сайта."
-#: views/writers.py:205
+#: views/writers.py:189
msgid ""
"<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 "
@@ -6988,7 +7088,7 @@ msgid ""
"Login takes about 30 seconds, initial signup takes a minute or less."
msgstr ""
-#: views/writers.py:482
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr ""
"<span class='big strong'>Пожалуйста, старайтесь давать ответы по-существу</"
@@ -6998,7 +7098,7 @@ msgstr ""
"вопрос дважды. Кроме того, пожалуйста, <strong>не забывайте голосовать</"
"strong> - это действительно помогает выбрать лучшие вопросы и ответы!"
-#: views/writers.py:588
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -7007,11 +7107,11 @@ msgstr ""
"Извините, вы не вошли, поэтому не можете оставлять комментарии. <a href="
"\"%(sign_in_url)s\">Войдите</a>."
-#: views/writers.py:605
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
-msgstr "неавторизированные пользователи не могут исправлять комментарии"
+msgstr "Неавторизованные пользователи не могут исправлять комментарии"
-#: views/writers.py:635
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -7020,32 +7120,18 @@ msgstr ""
"Извините, вы не вошли, поэтому не можете удалять комментарии. <a href="
"\"%(sign_in_url)s\">Войдите</a>."
-#: views/writers.py:656
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "Извините, у нас определённые технические проблемы."
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "используйте только буквы и символ дефис \"-\""
+
#~ msgid "URL for the LDAP service"
#~ msgstr "URL, по которому доступен сервис LDAP"
#~ msgid "Explain how to change LDAP password"
-#~ msgstr "Об‎‎ъясните, как изменить LDAP пароль"
-
-#~ msgid ""
-#~ "This command may help you migrate to LDAP password authentication by "
-#~ "creating a record for LDAP association with each user account. There is "
-#~ "an assumption that ldap user id's are the same as user names registered "
-#~ "at the site. Before running this command it is necessary to set up LDAP "
-#~ "parameters in the \"External keys\" section of the site settings."
-#~ msgstr ""
-#~ "Эта команда может помочь вам мигрировать на механизм аутентификации по "
-#~ "LDAP, создавая запись для LDAP-ассоциаций для каждой пользовательской "
-#~ "учетной записи. При этом предполагается, что LDAP использует ID "
-#~ "пользователей идентичные именам пользователей на сайте, До использования "
-#~ "этой команды, необходимо установить параметры LDAP в разделе \"External "
-#~ "keys\" настроек сайта."
-
-#~ msgid "use-these-chars-in-tags"
-#~ msgstr "используйте только буквы и символ дефис \"-\""
+#~ msgstr "Об‎‎ъясните здесь, как изменить LDAP пароль"
#~ msgid "question_answered"
#~ msgstr "question_answered"
@@ -7059,24 +7145,23 @@ msgstr "Извините, у нас определённые техническ
#~ msgid "answer_accepted"
#~ msgstr "answer_accepted"
-#~ msgid "by relevance"
-#~ msgstr "схожесть"
-
-#~ msgid "by date"
-#~ msgstr "дате"
-
-#~ msgid "by activity"
-#~ msgstr "активность"
-
-#~ msgid "by answers"
-#~ msgstr "ответы"
-
-#~ msgid "by votes"
-#~ msgstr "голоса"
-
#~ msgid "Incorrect username."
#~ msgstr "Неправильное имя пользователя."
+#~ msgid ""
+#~ "This command may help you migrate to LDAP password authentication by "
+#~ "creating a record for LDAP association with each user account. There is "
+#~ "an assumption that ldap user id's are the same as user names registered "
+#~ "at the site. Before running this command it is necessary to set up LDAP "
+#~ "parameters in the \"External keys\" section of the site settings."
+#~ msgstr ""
+#~ "Эта команда может помочь вам мигрировать на механизм аутентификации по "
+#~ "LDAP, создавая запись для LDAP-ассоциаций для каждой пользовательской "
+#~ "учетной записи. При этом предполагается, что LDAP использует ID "
+#~ "пользователей идентичные именам пользователей на сайте, До использования "
+#~ "этой команды, необходимо установить параметры LDAP в разделе \"External "
+#~ "keys\" настроек сайта."
+
#~ 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"
@@ -7156,9 +7241,10 @@ msgstr "Извините, у нас определённые техническ
#~ "</span> Правильный email нужен на этом форуме Вопросов и Ответов. Если "
#~ "вы хотите, вы можете <strong>получать обновления</strong> интересных "
#~ "вопросов или всего форума через email. Также, ваш email используется для "
-#~ "того чтобы создать уникальный <a href='%(gravatar_faq_url)"
-#~ "s'><strong>аватар</strong></a>, картинку для вашей учётной записи. Email "
-#~ "никогда не показывается другим пользователям или ещё кому-то другому."
+#~ "того чтобы создать уникальный <a "
+#~ "href='%(gravatar_faq_url)s'><strong>аватар</strong></a>, картинку для "
+#~ "вашей учётной записи. Email никогда не показывается другим пользователям "
+#~ "или ещё кому-то другому."
#~ msgid "Your new Email"
#~ msgstr ""
@@ -7172,15 +7258,15 @@ msgstr "Извините, у нас определённые техническ
#~ "strong> в вашем браузере. Проверка электронной почты необходима для того "
#~ "чтобы убедиться в правильности email на форуме <span class=\"orange"
#~ "\">Вопросов&amp;Ответов</span>. Если вы желаете использовать "
-#~ "<strong>другой email</strong>, пожалуйста <a href='%(change_email_url)"
-#~ "s'><strong>измените его снова</strong></a>."
+#~ "<strong>другой email</strong>, пожалуйста <a "
+#~ "href='%(change_email_url)s'><strong>измените его снова</strong></a>."
#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
#~ msgstr ""
#~ "<span class=\"strong big\">Ваш email адрес %(email)s не изменился.</span> "
#~ "Если вы решите изменить его позже - вы всегда можете сделать это "
-#~ "отредактировав ваш профиль или используя <a href='%(change_email_url)"
-#~ "s'><strong>предыдущую форму</strong></a> снова."
+#~ "отредактировав ваш профиль или используя <a "
+#~ "href='%(change_email_url)s'><strong>предыдущую форму</strong></a> снова."
#~ msgid "your current %(email)s can be used for this"
#~ msgstr ""
@@ -7211,8 +7297,8 @@ msgstr "Извините, у нас определённые техническ
#~ "свой <strong>email</strong> адрес. Сохраненный email адрес позволит "
#~ "вам<strong>подписываться на изменения</strong> наиболее интересных "
#~ "вопросов и будет использоваться чтобы создать и получать в дальнейшем "
-#~ "уникальное изображение для вашего аватара - <a href='%(gravatar_faq_url)"
-#~ "s'><strong>gravatar</strong></a>.</p>"
+#~ "уникальное изображение для вашего аватара - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
#~ msgid ""
#~ "%(username)s already exists, choose another name for \n"
@@ -7220,16 +7306,16 @@ msgstr "Извините, у нас определённые техническ
#~ "%(gravatar_faq_url)s\n"
#~ " "
#~ msgstr ""
-#~ "<p><span class='strong big'>К сожалению looks похоже что имя %(username)"
-#~ "s используется другим пользователем.</span></p><p>Пожалуйста выберите "
-#~ "другое имя для использования вместе с вашим %(provider)s логином. Также, "
-#~ "правильный email адрес нужен для использования на форуме <span "
-#~ "class='orange'>Вопросов&amp;Ответов</span>. Ваш email адрес используется "
-#~ "для того чтобы создать уникальный <a href='%(gravatar_faq_url)"
-#~ "s'><strong>аватар</strong></a>, картинку которая ассоциируется с вашей "
-#~ "учётной записью. Если вы хотите, вы можете <strong>получать уведомления</"
-#~ "strong> о интересных вопросах или о всём форуме через email. Email адрес "
-#~ "никогда не показывается кому-то ещё.</p>"
+#~ "<p><span class='strong big'>К сожалению looks похоже что имя "
+#~ "%(username)s используется другим пользователем.</span></p><p>Пожалуйста "
+#~ "выберите другое имя для использования вместе с вашим %(provider)s "
+#~ "логином. Также, правильный email адрес нужен для использования на форуме "
+#~ "<span class='orange'>Вопросов&amp;Ответов</span>. Ваш email адрес "
+#~ "используется для того чтобы создать уникальный <a "
+#~ "href='%(gravatar_faq_url)s'><strong>аватар</strong></a>, картинку которая "
+#~ "ассоциируется с вашей учётной записью. Если вы хотите, вы можете "
+#~ "<strong>получать уведомления</strong> о интересных вопросах или о всём "
+#~ "форуме через email. Email адрес никогда не показывается кому-то ещё.</p>"
#~ msgid ""
#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
@@ -7250,8 +7336,8 @@ msgstr "Извините, у нас определённые техническ
#~ "<strong>email</strong> адрес. Сохраненный email адрес позволит "
#~ "вам<strong>подписываться на изменения</strong> наиболее интересных "
#~ "вопросов и будет использоваться чтобы создать и получать в дальнейшем "
-#~ "уникальное изображение для вашего аватара - <a href='%(gravatar_faq_url)"
-#~ "s'><strong>gravatar</strong></a>.</p>"
+#~ "уникальное изображение для вашего аватара - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
#~ msgid "This account already exists, please use another."
#~ msgstr "Эта учётная запись уже существует, пожалуйста используйте другую."
@@ -7335,18 +7421,18 @@ msgstr "Извините, у нас определённые техническ
#~ msgstr "Спросить"
#~ msgid "Badges summary"
-#~ msgstr "Информация о знаках отличия (наградах)"
+#~ msgstr "Награды"
#~ msgid "gold badge description"
#~ msgstr ""
-#~ "Золотой значек высшая награда сообщества. Для ее получения нужно показать "
-#~ "глубокие знания и способности в дополнение к активному участию."
+#~ "Золотая награда - высшая награда сообщества. Для ее получения нужно "
+#~ "показать глубокие знания и способности в дополнение к активному участию."
#~ msgid "silver badge description"
-#~ msgstr "серебряный медаль"
+#~ msgstr "серебряная награда: как правило, присуждается за большой вклад"
#~ msgid "bronze badge description"
-#~ msgstr "бронзовый значок: часто даётся как особая заслуга"
+#~ msgstr "бронзовая награда: часто даётся как особые заслуги"
#~ msgid ""
#~ "is a Q&A site, not a discussion group. Therefore - please avoid having "
@@ -7359,11 +7445,10 @@ msgstr "Извините, у нас определённые техническ
#~ msgid "Rep system summary"
#~ msgstr ""
-#~ "Когда за вопрос или ответ проголосовали, пользователь который создал их, "
-#~ "получит некоторые балы, которые называются \"балы репутации\". Эти балы "
-#~ "служат грубой мерой доверия сообщества ему/ей. Различные задачи "
-#~ "модераторирования постепенно назначаются пользователю, на основе этих "
-#~ "балов."
+#~ "Когда за вопрос или ответ голосуют, пользователь который оставил это "
+#~ "сообщение, получит некоторое количество баллов, которые называются \"очки "
+#~ "репутации\". Эти балы служат грубой мерой доверия сообщества этому "
+#~ "пользователю и предоставляют ему различные права модератора."
#~ msgid "what is gravatar"
#~ msgstr "Как изменить мою картинку (gravatar) и что такое gravatar?"
@@ -7409,7 +7494,7 @@ msgstr "Извините, у нас определённые техническ
#~ msgstr "Измененить тэги"
#~ msgid "reputation"
-#~ msgstr "карма"
+#~ msgstr "репутации"
#~ msgid "oldest answers"
#~ msgstr "старый"
@@ -7455,10 +7540,10 @@ msgstr "Извините, у нас определённые техническ
#~ msgstr "Ответить на вопрос"
#~ msgid "question asked"
-#~ msgstr "вопрос был задан"
+#~ msgstr "Задан"
#~ msgid "question was seen"
-#~ msgstr "вопрос был просмотрен"
+#~ msgstr "Просмотрен"
#~ msgid "Notify me once a day when there are any new answers"
#~ msgstr ""
@@ -7471,9 +7556,9 @@ msgstr "Извините, у нас определённые техническ
#~ msgid ""
#~ "You can always adjust frequency of email updates from your %(profile_url)s"
#~ msgstr ""
-#~ "(вы всегда можете <strong><a href='%(profile_url)s?"
-#~ "sort=email_subscriptions'>изменить</a></strong> как часто вы будете "
-#~ "получать письма)"
+#~ "(примечание: вы всегда можете <strong><a href='%(profile_url)s?"
+#~ "sort=email_subscriptions'>изменить</a></strong> частоту получения писем с "
+#~ "обновлениями)"
#~ msgid "email subscription settings info"
#~ msgstr ""
@@ -7485,13 +7570,13 @@ msgstr "Извините, у нас определённые техническ
#~ "новая активность в выбранных элементах."
#~ msgid "Stop sending email"
-#~ msgstr "Остановить отправку электронной почты"
+#~ msgstr "Не слать email"
#~ msgid "user website"
-#~ msgstr "сайт пользователя"
+#~ msgstr "веб-страница"
#~ msgid "reputation history"
-#~ msgstr "карма"
+#~ msgstr "репутация"
#~ msgid "recent activity"
#~ msgstr "последняя активность"
@@ -7503,10 +7588,10 @@ msgstr "Извините, у нас определённые техническ
#~ msgstr "Советы"
#~ msgid "please try to provide details"
-#~ msgstr "включите детали в Ваш ответ"
+#~ msgstr "сообщите достаточно информации по своему вопросу"
#~ msgid "ask a question"
-#~ msgstr "задать вопрос"
+#~ msgstr "Задать Вопрос"
#~ msgid ""
#~ "must have valid %(email)s to post, \n"
@@ -7526,10 +7611,10 @@ msgstr "Извините, у нас определённые техническ
#~ msgstr "Советы"
#~ msgid "please ask a relevant question"
-#~ msgstr "задать вопрос интересующий сообщество"
+#~ msgstr "задавайте вопросы, интересующие сообщество"
#~ msgid "logout"
-#~ msgstr "Выход"
+#~ msgstr "выход"
#~ msgid "login"
#~ msgstr "Вход"
@@ -7547,7 +7632,7 @@ msgstr "Извините, у нас определённые техническ
#~ msgstr "введите пароль еще раз"
#~ msgid "user reputation in the community"
-#~ msgstr "карма пользователя в сообществе"
+#~ msgstr "репутация пользователя"
#~ msgid "Please log in to ask questions"
#~ msgstr ""
diff --git a/askbot/locale/ru/LC_MESSAGES/djangojs.po b/askbot/locale/ru/LC_MESSAGES/djangojs.po
index c91b4fd7..6d072a17 100644
--- a/askbot/locale/ru/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/ru/LC_MESSAGES/djangojs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-11 22:21-0500\n"
+"POT-Creation-Date: 2012-04-18 18:49-0500\n"
"PO-Revision-Date: 2012-03-09 09:38+0000\n"
"Last-Translator: olloff <olloff@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.net/projects/p/askbot/language/"
@@ -138,15 +138,15 @@ msgstr "ваше сообщение восстановлено"
msgid "post deleted"
msgstr "ваше сообщение было удалено"
-#: skins/common/media/js/post.js:1202
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "добавить комментарий"
-#: skins/common/media/js/post.js:1205
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "сохранить комментарий"
-#: skins/common/media/js/post.js:1870
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "Пожалуйста, введите заголовок вопроса (>10 символов)"
diff --git a/askbot/locale/sr/LC_MESSAGES/django.po b/askbot/locale/sr/LC_MESSAGES/django.po
index a4abec55..f3db6971 100644
--- a/askbot/locale/sr/LC_MESSAGES/django.po
+++ b/askbot/locale/sr/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:24-0600\n"
+"POT-Creation-Date: 2012-04-18 18:49-0500\n"
"PO-Revision-Date: 2010-05-07 02:52\n"
"Last-Translator: <who@email.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,16 +25,16 @@ msgstr ""
"Извините, но к сожалению эта функция недоступна для неавторизованных "
"пользователей"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr "-"
-#: feed.py:26
+#: feed.py:28
#, fuzzy
msgid "Individual question feed"
msgstr "Појединачно одабрани"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "најновија питања"
@@ -63,7 +63,7 @@ msgstr "наслов"
msgid "please enter a descriptive title for your question"
msgstr "молимо Вас, унестите јасан наслов за Ваше питање"
-#: forms.py:111
+#: forms.py:113
#, fuzzy, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
@@ -71,17 +71,26 @@ msgstr[0] "наслов мора имати > 10 карактера"
msgstr[1] "наслов мора имати > 10 карактера"
msgstr[2] "наслов мора имати > 10 карактера"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "садржај"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "ознаке"
-#: forms.py:168
+#: forms.py:188
#, fuzzy, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -93,11 +102,11 @@ msgstr[0] "Ознаке су кратке речи, без размака. Мо
msgstr[1] "Ознаке су кратке речи, без размака. Можете унети до 5 ознака."
msgstr[2] "Ознаке су кратке речи, без размака. Можете унети до 5 ознака."
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "ознаке су обавезне"
-#: forms.py:210
+#: forms.py:232
#, fuzzy, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
@@ -105,12 +114,12 @@ msgstr[0] "користите %(tag_count)d ознаку или мање"
msgstr[1] "користите %(tag_count)d ознака или мање"
msgstr[2] "користите %(tag_count)d ознака или мање"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:227
+#: forms.py:249
#, fuzzy, 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"
@@ -118,15 +127,15 @@ msgstr[0] "свака ознака мора имати мање од %(max_chars
msgstr[1] "свака ознака мора имати мање од %(max_chars)d карактера"
msgstr[2] "свака ознака мора имати мање од %(max_chars)d карактера"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "користите-ове-каратере-у-ознакама"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -134,11 +143,11 @@ msgstr ""
"уколико одаберете вики опцију, питање и одговор не доносе поене; име аутора "
"се не приказује"
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "ажурирање резимеа:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -146,67 +155,67 @@ msgstr ""
"унесите кратко објашњење Ваше измене (нпр. правопис, граматика, побољшање "
"стила, ово поље није обавезно)"
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Введите количество очков которые Вы собираетесь вычесть или добавить."
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "простой гражданин"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "поднадзорный пользователь"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "ограниченный в правах"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "заблокированный пользователь"
-#: forms.py:383
+#: forms.py:405
#, fuzzy
msgid "administrator"
msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
#, fuzzy
msgid "moderator"
msgstr "moderate-user/"
-#: forms.py:404
+#: forms.py:426
#, fuzzy
msgid "Change status to"
msgstr "Промените ознаке"
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "который?"
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr "Извините, но собственный статус изменить нельзя"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr ""
"Извините, но у Вас нет возможности давать другим пользователям статус "
"модератора"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "Извините, но у Вас нет возможности изменять статус модераторов"
-#: forms.py:471
+#: forms.py:493
#, fuzzy
msgid "Cannot change status to admin"
msgstr "Промените ознаке"
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -215,37 +224,37 @@ msgstr ""
"Если Вы хотите изменить статус пользователя %(username)s, это можно сделать "
"сдесь"
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Тема"
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "Текст сообщения"
-#: forms.py:579
+#: forms.py:530
#, fuzzy
msgid "Your name (optional):"
msgstr "Ваше име:"
-#: forms.py:580
+#: forms.py:531
#, fuzzy
msgid "Email:"
msgstr "е-пошта/"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "Ваша порука:"
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
#, fuzzy
msgid "ask anonymously"
msgstr ""
@@ -253,47 +262,47 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"анонимный"
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:923
-#, fuzzy
-msgid "this email will be linked to gravatar"
-msgstr "ова е-пошта не мора бити повезана са gravatar-ом"
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Право име"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "Вебсајт"
-#: forms.py:944
+#: forms.py:902
#, fuzzy
msgid "City"
msgstr ""
@@ -301,7 +310,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Критик"
-#: forms.py:953
+#: forms.py:911
#, fuzzy
msgid "Show country"
msgstr ""
@@ -309,175 +318,199 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Показывать подвал страницы."
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Датум рођења"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
"неће бити приказано, користи се за израчунавање ваших година, формат: ГГГГ-"
"ММ-ДД"
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "Профил"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Корисничко име"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "ова е-пошта је већ регистрована, молимо Вас унесите другу"
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "Выберите тип фильтра по темам (ключевым словам)"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "Заданные мной"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "Отвеченные мной"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Појединачно одабрани"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Цео форум (ознака филтрирана)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Сообщения которые упоминают моё имя"
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "молимо Вас изаберете једну од опција изнад"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "У реду, хајде да покушамо!"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "молимо Вас без askbot е-поште, хвала"
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "молимо Вас изаберете једну од опција изнад"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
-#: urls.py:52
+#: urls.py:41
msgid "about/"
msgstr "онама/"
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr "чпп/"
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "приватност/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "одговори/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "уреди/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "ревизије/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+#, fuzzy
+msgid "questions"
+msgstr ""
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"питања\n"
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"вопросы"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "питања/"
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "питај/"
-#: urls.py:87
+#: urls.py:92
#, fuzzy
msgid "retag/"
msgstr "ознаке/"
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "затвори/"
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "отворипоново/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "одговор/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "гласај/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "ознаке/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr ""
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "корисници/"
-#: urls.py:214
+#: urls.py:219
#, fuzzy
msgid "subscriptions/"
msgstr "питања"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "беџеви/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "поруке/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "означипрочитано/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "upload/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "сугестија/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "питање/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
#, fuzzy
msgid "account/"
@@ -610,10 +643,15 @@ msgid ""
msgstr ""
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "Электронная почта и система оповещений"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Максимальное количество новостей в оповестительном сообщении"
-#: conf/email.py:48
+#: conf/email.py:57
#, fuzzy
msgid "Default notification frequency all questions"
msgstr ""
@@ -621,68 +659,68 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Минимальная частота рассылки сообщений по умолчанию"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
#, fuzzy
msgid "Default notification frequency questions asked by the user"
msgstr "Затвори питање"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
#, fuzzy
msgid "Default notification frequency questions answered by the user"
msgstr "питање је одговорено, прави одговор је прихваћен"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
#, fuzzy
msgid "Send periodic reminders about unanswered questions"
msgstr "погледајте питања без одговора"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
#, fuzzy
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
@@ -690,13 +728,13 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Неотвеченных вопросов нет"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
#, fuzzy
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
@@ -704,19 +742,19 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"нажмите, чтобы увидеть последние вопросы"
-#: conf/email.py:168
+#: conf/email.py:177
#, fuzzy
msgid "Send periodic reminders to accept the best answer"
msgstr "погледајте питања без одговора"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
#, fuzzy
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
@@ -724,13 +762,13 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Неотвеченных вопросов нет"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
#, fuzzy
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
@@ -738,34 +776,34 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"нажмите, чтобы увидеть последние вопросы"
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
"Требовать подтверждения адреса электронной почты перед публикацией сообщений"
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
"Подтверждение адреса электронной почты осуществляется отправкой ключа "
"проверки на email"
-#: conf/email.py:228
+#: conf/email.py:237
#, fuzzy
msgid "Allow only one account per email address"
msgstr "Your email <i>(never shared)</i>"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr "Поддельный адрес электронной почты для анонимного пользователя"
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
"Используйте эту установку для аватара пользователей которые не ввели адрес "
"электронной почты."
-#: conf/email.py:247
+#: conf/email.py:256
#, fuzzy
msgid "Allow posting questions by email"
msgstr ""
@@ -775,22 +813,46 @@ msgstr ""
"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."
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+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."
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
#, fuzzy
msgid "Keys for external services"
@@ -834,15 +896,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr "Активировать recaptcha (требуется регистрация на recaptcha.net)"
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr "Публичный ключ для recaptcha"
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr "Секретный ключ для recaptcha"
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, fuzzy, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -855,11 +917,11 @@ msgstr ""
"спам-роботов. Пожалуйста получите необходимые ключи на сайте <a href="
"\"http://recaptcha.net\">recaptcha.net</a>"
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr "Публичный ключ для доступа Facebook API"
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, fuzzy, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -873,15 +935,15 @@ msgstr ""
"получить <a href=\"http://www.facebook.com/developers/createapp.php\">здесь</"
"a>"
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Секретный ключ для Facebook"
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr "Публичный ключ для доступа Twitter API (consumer key)"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, fuzzy, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
@@ -893,15 +955,15 @@ msgstr ""
"<a href=\"http://dev.twitter.com/apps/\">сайте для приложений использующих "
"Twitter API</a>"
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr "Секретный ключ для доступа Twitter API (consumer secret)"
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr "Публичный ключ для LinkedIn (consumer key)"
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, fuzzy, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
@@ -912,11 +974,11 @@ msgstr ""
"<a href=\"http://dev.twitter.com/apps/\">сайте для приложений использующих "
"Twitter API</a>"
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr "Секретный ключ для LinkedIn (consumer secret)"
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
#, fuzzy
msgid "ident.ca consumer key"
msgstr ""
@@ -924,7 +986,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Публичный ключ для LinkedIn (consumer key)"
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, fuzzy, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
@@ -936,7 +998,7 @@ msgstr ""
"<a href=\"http://dev.twitter.com/apps/\">сайте для приложений использующих "
"Twitter API</a>"
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
#, fuzzy
msgid "ident.ca consumer secret"
msgstr ""
@@ -944,24 +1006,6 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Секретный ключ для LinkedIn (consumer secret)"
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-"Использовать протокол LDAP для авторизации через пароль и имя пользователя"
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr "Имя провайдера сервиса авторизации LDAP"
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr "URL, по которому доступен сервис LDAP"
-
-#: conf/external_keys.py:193
-#, fuzzy
-msgid "Explain how to change LDAP password"
-msgstr "Change your password"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "Простые страницы - \"о нас\", \"политика о личных данных\" и.т.д."
@@ -1017,11 +1061,13 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Ввод и отображение данных"
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -1102,111 +1148,172 @@ msgstr ""
#: conf/forum_data_rules.py:126
#, fuzzy
+msgid "Are tags required?"
+msgstr "ознаке су обавезне"
+
+#: conf/forum_data_rules.py:135
+#, fuzzy
msgid "Mandatory tags"
msgstr "ажуриране ознаке"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
#, fuzzy
msgid "Use wildcard tags"
msgstr "Ознаке"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr "Число комментариев по-умолчанию, которое показывается под сообщениями"
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
"Максимальная длина комментария не должна превышать %(max_len)s символов"
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr "Минимальная длина поискового запроса в AJAX поиске"
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
"Значение должно равняться соответствующей установке в Вашей базе данных"
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "Наибольшее разрешенное количество ключевых слов (тегов) на вопрос"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr "Количество вопросов отображаемых на главной странице"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
#, fuzzy
msgid "What should \"unanswered question\" mean?"
msgstr "питања без одговора"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+"Использовать протокол LDAP для авторизации через пароль и имя пользователя"
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+#, fuzzy
+msgid "LDAP Server USERID field name"
+msgstr "Имя провайдера сервиса авторизации LDAP"
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+#, fuzzy
+msgid "LDAP Server EMAIL field name"
+msgstr "Имя провайдера сервиса авторизации LDAP"
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Ознаке"
+
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "кориснички профил"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1285,11 +1392,11 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, fuzzy, python-format
msgid "Activate %(provider)s login"
msgstr ""
@@ -1297,7 +1404,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Вход при помощи %(provider)s работает отлично"
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1486,6 +1593,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
#, fuzzy
msgid "Karma loss and gain rules"
@@ -1704,11 +1815,11 @@ msgstr "Описание сайта для поисковиков"
msgid "Short name for your Q&A forum"
msgstr "Краткое название форума"
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr "Базовая часть URL форума (должна начинаться с http или https)"
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
#, fuzzy
msgid "Check to enable greeting for anonymous user"
msgstr ""
@@ -1716,7 +1827,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Поддельный адрес электронной почты для анонимного пользователя"
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
#, fuzzy
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
@@ -1724,15 +1835,15 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Ссылка, которая показывается в приветствии неавторизованному посетителю"
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "Ссылка на сайт для обратной связи"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
"Если оставите это поле пустым, то для посылки обратной связи будет "
@@ -1861,21 +1972,21 @@ msgstr ""
"Чтобы заменить логотип, выберите новый файл затем нажмите кнопку \"сохранить"
"\""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr "Показывать логотип"
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr "Отметьте если Вы хотите использовать логотип в головной части форум"
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr "Фавикон для Вашего сайта"
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1886,11 +1997,11 @@ msgstr ""
"используется в интерфейсе браузеров. На <a href=\"%(favicon_info_url)s"
"\">Здесь</a> есть дополнительная информация о favicon."
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr "Кнопка для входа с паролем"
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
@@ -1898,11 +2009,11 @@ msgstr ""
"Картинка размером 88x38, которая используется в качестве кнопки для "
"авторизации с именем и паролем."
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr "Отображать все функции пользовательского интерфейса всем пользователям"
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
msgid ""
"If checked, all forum functions will be shown to users, regardless of their "
"reputation. However to use those functions, moderation rules, reputation and "
@@ -1913,20 +2024,20 @@ msgstr ""
"фактический доступ всё равно будет зависить от репутации, правил "
"модерирования и т.п."
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
#, fuzzy
msgid "Select skin"
msgstr "изаберите ревизију"
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1938,11 +2049,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1951,21 +2062,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1974,21 +2085,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1997,19 +2108,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -2020,19 +2131,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr "Ревизия медиа-файлов скина"
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -2126,7 +2237,7 @@ msgstr ""
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
#, fuzzy
msgid "User settings"
msgstr ""
@@ -2134,16 +2245,21 @@ msgstr ""
"user sessions. Cookies must be enabled in your browser so that forum can "
"work for you."
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr "Позволить пользователям изменять имена"
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "Your email <i>(never shared)</i>"
+
+#: conf/user_settings.py:41
#, fuzzy
msgid "Allow account recovery by email"
msgstr "Your email <i>(never shared)</i>"
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
#, fuzzy
msgid "Allow adding and removing login methods"
msgstr ""
@@ -2152,22 +2268,48 @@ msgstr ""
"Пожалуйста, добавьте хотя бы один постоянный метод для авторизации. Иметь "
"два или больше методов тоже можно."
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr "Минимальное количество букв в именах пользователей"
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+#, fuzzy
+msgid "Default avatar for users"
+msgstr "Значение по умолчанию: %s"
+
+#: conf/user_settings.py:70
+#, fuzzy
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+"Чтобы заменить логотип, выберите новый файл затем нажмите кнопку \"сохранить"
+"\""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
#, fuzzy
msgid "Name for the Anonymous user"
msgstr ""
@@ -2290,139 +2432,144 @@ msgstr "спам или реклама"
msgid "too localized"
msgstr "превише локализовано"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "најновија"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "стари"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "активна"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "не активнa"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "hottest"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "coldest"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "са највише гласова"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "са најмање гласова"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "релевантности"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "свa"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "неодговорена"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "омиљена"
-#: const/__init__.py:64
+#: const/__init__.py:70
#, fuzzy
msgid "list"
msgstr "Списак ознака"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
#, fuzzy
msgid "Question has no answers"
msgstr "Питања на која сте одговорили"
-#: const/__init__.py:79
+#: const/__init__.py:80
#, fuzzy
msgid "Question has no accepted answers"
msgstr "Питања на која сте одговорили"
-#: const/__init__.py:122
+#: const/__init__.py:125
#, fuzzy
msgid "asked a question"
msgstr "поставите питање"
-#: const/__init__.py:123
+#: const/__init__.py:126
#, fuzzy
msgid "answered a question"
msgstr "неодговорена"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "коментарисано питање"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "коментарисан одговор"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "измењено питање"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "измењен одговор"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "примљен беџ"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "означен најбољи одговор"
-#: const/__init__.py:130
+#: const/__init__.py:133
#, fuzzy
msgid "upvoted"
msgstr "upvoted"
-#: const/__init__.py:131
+#: const/__init__.py:134
#, fuzzy
msgid "downvoted"
msgstr "downvoted"
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "гласање је отказано"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "обрисано питање"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "обрисан одговор"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "означено увредљивим"
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "ажуриране ознаке"
-#: const/__init__.py:137
+#: const/__init__.py:140
#, fuzzy
msgid "selected favorite"
msgstr ""
@@ -2430,7 +2577,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"занесено в избранное "
-#: const/__init__.py:138
+#: const/__init__.py:141
#, fuzzy
msgid "completed user profile"
msgstr ""
@@ -2438,127 +2585,120 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"завершенный профиль пользователя"
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "ажурирање је послато на корисникову е-пошту"
-#: const/__init__.py:142
+#: const/__init__.py:145
#, fuzzy
msgid "reminder about unanswered questions sent"
msgstr "погледајте питања без одговора"
-#: const/__init__.py:146
+#: const/__init__.py:149
#, fuzzy
msgid "reminder about accepting the best answer sent"
msgstr "означен најбољи одговор"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "упомянуто в тексте сообщения"
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "одговорено питање"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "коментарисано питање"
-
-#: const/__init__.py:201
+#: const/__init__.py:202
#, fuzzy
-msgid "answer_commented"
-msgstr "одговор коментарисао"
+msgid "answered question"
+msgstr "неодговорена"
-#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr "прихваћен одговор"
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "измењен одговор"
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[затворено]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[обрисано]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "почетна верзија"
-#: const/__init__.py:209
+#: const/__init__.py:212
#, fuzzy
msgid "retagged"
msgstr "ретаговано"
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr "отключить"
-#: const/__init__.py:218
+#: const/__init__.py:221
#, fuzzy
msgid "exclude ignored"
msgstr "занемари игнорисане ознаке"
-#: const/__init__.py:219
+#: const/__init__.py:222
#, fuzzy
msgid "only selected"
msgstr "Појединачно одабрани"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "немедленно "
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "дневно"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "недељно"
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "не посылать email"
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
#, fuzzy
msgid "mystery-man"
msgstr "јуче"
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
#, fuzzy
msgid "wavatar"
msgstr "Како да промените своју слику (gravatar) и шта је gravatar?"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "злато"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "сребро"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "бронза"
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
#, fuzzy
msgid "Gravatar"
msgstr ""
@@ -2566,7 +2706,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"что такое Gravatar"
-#: const/__init__.py:300
+#: const/__init__.py:303
#, fuzzy
msgid "Uploaded Avatar"
msgstr ""
@@ -2574,84 +2714,98 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"что такое Gravatar"
-#: const/message_keys.py:15
+#: const/message_keys.py:21
#, fuzzy
msgid "most relevant questions"
msgstr "ask a question interesting to this community"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
#, fuzzy
msgid "click to see most relevant questions"
msgstr "questions with most answers"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
#, fuzzy
msgid "by relevance"
msgstr "релевантности"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "кликните да бисте видели најстарија питања"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
#, fuzzy
msgid "by date"
msgstr "Ажурирајте"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "кликните да бисте видели најновији питања"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
#, fuzzy
msgid "click to see the least recently updated questions"
msgstr "кликните да бисте видели недавно ажурирана питања"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
#, fuzzy
msgid "by activity"
msgstr "активна"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "кликните да бисте видели недавно ажурирана питања"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
#, fuzzy
msgid "click to see the least answered questions"
msgstr "кликните да бисте видели најстарија питања"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
#, fuzzy
msgid "by answers"
msgstr "одговори"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
#, fuzzy
msgid "click to see the most answered questions"
msgstr "кликните да бисте видели најновији питања"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "least voted questions"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
#, fuzzy
msgid "by votes"
msgstr "гласај/"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
#, fuzzy
msgid "click to see most voted questions"
msgstr "least voted questions"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr "i-names нису подржанa"
@@ -2703,11 +2857,12 @@ msgid "Your user name (<i>required</i>)"
msgstr "Ваше корисничко име <i>(обавезно)</i>"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Погрешно корисничко име."
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "нажалост, не постоји корисник са овим именом"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "пријава/"
@@ -2747,7 +2902,7 @@ msgid "%(site)s user name and password"
msgstr "Молимо Вас да унесете корисничко име и шифру"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "Создайте новый аккаунт с именем и паролем"
@@ -2838,13 +2993,13 @@ msgstr "Молимо Вас да унесете корисничко име и
msgid "Sign in with your %(provider)s account"
msgstr "Заходите через Ваш аккаунт на %(provider)s"
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID %(openid_url)s није исправан"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
@@ -2853,65 +3008,65 @@ msgstr ""
"К сожалению, возникла проблема при соединении с %(provider)s, пожалуйста "
"попробуйте ещё раз или зайдите через другого провайдера"
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
#, fuzzy
msgid "Your new password saved"
msgstr "Ваша шифра је измењена"
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr "Введите имя пользователя и пароль"
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr "Email для восстановления аккаунта выслан"
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
"Пожалуйста, добавьте хотя бы один постоянный метод для авторизации. Иметь "
"два или больше методов тоже можно."
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr "Здесь можно изменить пароль и проверить текущие методы авторизации"
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
"Пожалуйста, подождите секунду! Ваша учетная запись восстанавлена, но ..."
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr "К сожалению, этот ключ восстановления истек или не является верным"
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr "Метод входа %(provider_name) s не существует"
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
#, fuzzy
msgid "Oops, sorry - there was some error - please try again"
msgstr "унета шифра не одговара, покушајте поново"
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr "Вход при помощи %(provider)s работает отлично"
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
"Your email needs to be validated. Please see details <a "
"id='validate_email_alert' href='%(details_url)s'>here</a>."
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, fuzzy, python-format
msgid "Recover your %(site)s account"
msgstr ""
@@ -2919,7 +3074,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Восстановить ваш аккаунт используя email"
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr "Пожалуйста, проверьте свой email и пройдите по вложенной ссылке."
@@ -2928,28 +3083,28 @@ msgstr "Пожалуйста, проверьте свой email и пройди
msgid "Site"
msgstr "наслов"
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "Базовые настройки"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Значение по умолчанию:\"\""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Значение по умолчанию:"
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Значение по умолчанию: %s"
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, fuzzy, python-format
msgid "Allowed image file types are %(types)s"
msgstr "дозвољени типови датотека су '%(file_types)s'"
@@ -2967,7 +3122,7 @@ msgstr "Локација"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Промени шифру"
@@ -3031,62 +3186,22 @@ msgstr "Развернуть все"
msgid "Congratulations, you are now an Administrator"
msgstr "Честитамо, сада сте администратор"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
#, fuzzy
msgid "Please accept the best answer for this question:"
msgstr "Будите први који ћете дати одговор на ово питање!"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
#, fuzzy
msgid "Please accept the best answer for these questions:"
msgstr "кликните да бисте видели најстарија питања"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
@@ -3094,68 +3209,33 @@ msgstr[0] "%(question_count)d вопрос обновлен в %(topics)s"
msgstr[1] "%(question_count)d вопросы обновлены в %(topics)s"
msgstr[2] "%(question_count)d вопросы обновлены в %(topics)s"
-#: management/commands/send_email_alerts.py:421
-#, fuzzy, 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>%(name)s,</p></p>Следеће питање је ажурирано на П&О форуму:</p>"
+#: management/commands/send_email_alerts.py:425
+#, python-format
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
+msgstr[0] ""
msgstr[1] ""
-"<p>%(name)s,</p><p>Следећих %(num)d питања је ажурирано на П&О форуму:</p>"
msgstr[2] ""
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "ново питање"
-#: 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 ""
-"Пожалуйста, зайдите на наш форум и посмотрите что есть нового. Может быть Вы "
-"расскажете другим о нашем сайте или кто-нибудь из Ваших знакомых может "
-"ответить на эти вопросы или извлечь пользу из ответов?"
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-"Ваша наиболее частая настройка оповещения по email - ежедневная. Если вы "
-"получаете email чаще, пожалуйста, известите администратора форума."
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-"Ваша наиболее частая настройка оповещения по email - еженедельная. Если вы "
-"получаете email чаще, пожалуйста, известите администратора форума."
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-"Не исключено что Вы можете получить ссылки, которые видели раньше. Это "
-"исчезнет спустя некоторое время."
-
-#: management/commands/send_email_alerts.py:490
-#, fuzzy, python-format
+#: management/commands/send_email_alerts.py:474
+#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
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>"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, fuzzy, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -3177,7 +3257,7 @@ msgstr[2] ""
msgid "Please log in to use %s"
msgstr "User login"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
@@ -3185,7 +3265,7 @@ msgstr ""
"К сожалению, вы не можете принять или не принять лучший ответ, потому что "
"ваша учетная запись заблокирована"
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
@@ -3193,7 +3273,7 @@ msgstr ""
"К сожалению, вы не можете принять или не принять лучший ответ, потому что "
"ваша учетная запись приостановлена"
-#: models/__init__.py:334
+#: models/__init__.py:337
#, fuzzy, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
@@ -3204,13 +3284,13 @@ msgstr ""
"К сожалению, вы не можете принять или не принять ваш собственный ответ на "
"ваш вопрос"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, fuzzy, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
@@ -3221,29 +3301,30 @@ msgstr ""
"К сожалению, только первый автор вопроса - %(username)s - может принять "
"лучший ответ"
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "нельзя голосовать за собственные сообщения"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "К сожалению, ваша учетная запись заблокирована"
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "К сожалению, ваша учетная запись приостановлена"
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr "для повышения рейтинга требуется минимум %(points)s баллов "
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr "для понижения рейтинга требуется минимум %(points)s баллов"
-#: models/__init__.py:431
+#: models/__init__.py:430
#, fuzzy
msgid "Sorry, blocked users cannot upload files"
msgstr ""
@@ -3251,7 +3332,7 @@ msgstr ""
"until this issue is resolved. Please contact the forum administrator to "
"reach a resolution."
-#: models/__init__.py:432
+#: models/__init__.py:431
#, fuzzy
msgid "Sorry, suspended users cannot upload files"
msgstr ""
@@ -3259,29 +3340,12 @@ msgstr ""
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "нажалост, слање датотека на сервер захтева да имате карму >%(min_rep)s"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-#, fuzzy
-msgid "blocked users cannot post"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
-
-#: models/__init__.py:454 models/__init__.py:989
-#, fuzzy
-msgid "suspended users cannot post"
-msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:481
+#: models/__init__.py:482
#, fuzzy, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3305,19 +3369,19 @@ msgstr[2] ""
"К сожалению, комментарии (за исключением последнего) можно редактировать "
"только в течение 10 минут"
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
"К сожалению, только владелец или модератор может редактировать комментарий"
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
"К сожалению, так как ваш аккаунт приостановлен вы можете комментировать "
"только свои собственные сообщения"
-#: models/__init__.py:510
+#: models/__init__.py:523
#, python-format
msgid ""
"Sorry, to comment any post a minimum reputation of %(min_rep)s points is "
@@ -3327,7 +3391,7 @@ msgstr ""
"балов кармы. Вы можете комментировать только свои собственные сообщения и "
"ответы на ваши вопросы"
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
@@ -3335,7 +3399,7 @@ msgstr ""
"Этот пост был удален, его может увидеть только владелец, администраторы "
"сайта и модераторы"
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
@@ -3343,19 +3407,19 @@ msgstr ""
"Извините, только модераторы, администраторы сайта и владельцы сообщения "
"могут редактировать удаленные сообщения"
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
"К сожалению, так как Ваш учетная запись заблокирована Вы не можете "
"редактировать сообщения"
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
"К сожалению, так как ваша учетная запись приостановлена вы можете "
"редактировать только ваши собственные сообщения"
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
@@ -3363,7 +3427,7 @@ msgstr ""
"К сожалению, для редактирования вики сообщений, требуется %(min_rep)s баллов "
"кармы"
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
@@ -3372,7 +3436,7 @@ msgstr ""
"К сожалению, для редактировать сообщения других пользователей, требуется "
"%(min_rep)s балов кармы"
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3389,20 +3453,20 @@ msgstr[2] ""
"К сожалению, Вы не может удалить ваш вопрос, поскольку на него ответили "
"другие пользователи и их ответы получили положительные голоса"
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять "
"сообщения"
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
"К сожалению, так как Ваша учетная запись приостановлена Вы не можете удалять "
"сообщения"
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
@@ -3411,19 +3475,19 @@ msgstr ""
"К сожалению, для удаления сообщений других пользователей, требуется "
"%(min_rep)s балов кармы"
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована вы не можете закрыть "
"вопросы"
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
"К сожалению, так как Ваша учетная запись приостановлена вы не можете закрыть "
"вопросы"
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
@@ -3432,14 +3496,14 @@ msgstr ""
"К сожалению, для закрытия сообщения других пользователей, требуется "
"%(min_rep)s балов кармы"
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
"К сожалению, для закрытия своего вопроса, требуется %(min_rep)s балов кармы"
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
@@ -3448,7 +3512,7 @@ msgstr ""
"К сожалению, только администраторы, модераторы или владельцы с кармой >"
"%(min_rep)s может открыть вопрос"
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
@@ -3456,74 +3520,58 @@ msgstr ""
"К сожалению, чтобы вновь открыть собственный вопрос требуется %(min_rep)s "
"баллов кармы"
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "нельзя пометить сообщение как оскорбительное дважды"
-
-#: models/__init__.py:764
-#, fuzzy
-msgid "blocked users cannot flag posts"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
-#: models/__init__.py:766
+#: models/__init__.py:783
#, fuzzy
-msgid "suspended users cannot flag posts"
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
+"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять "
+"сообщения"
-#: models/__init__.py:768
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr "необходимо > %(min_rep)s баллов чтобы отметить как спам"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
+msgstr "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "%(max_flags_per_day)s превышен"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
+msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
+"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять "
+"сообщения"
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
-msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
+#: models/__init__.py:843
#, fuzzy, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
-msgstr[0] ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"необходимо > %(min_rep)s баллов чтобы отметить как спам"
-msgstr[1] ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"необходимо > %(min_rep)s баллов чтобы отметить как спам"
-msgstr[2] ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"необходимо > %(min_rep)s баллов чтобы отметить как спам"
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgstr[0] "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
+msgstr[1] "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
+msgstr[2] "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
-#: models/__init__.py:828
+#: models/__init__.py:862
#, fuzzy
msgid "you don't have the permission to remove all flags"
msgstr ""
@@ -3531,11 +3579,11 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"У вас нет разрешения на изменение значений."
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
@@ -3543,63 +3591,62 @@ msgstr ""
"К сожалению, только владельцы, администраторы сайта и модераторы могут "
"менять теги к удаленным вопросам"
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована вы не можете поменять "
"теги вопроса "
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
"К сожалению, так как Ваша учетная запись приостановлена вы можете менять "
"теги только на свои вопросы"
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы"
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять "
"комментарий"
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
"К сожалению, так как Ваша учетная запись приостановлена вы можете удалять "
"только ваши собственные комментарии"
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
"К сожалению, для удаления комментариев требуется %(min_rep)s баллов кармы"
-#: models/__init__.py:918
-#, fuzzy
-msgid "cannot revoke old vote"
-msgstr "гласање је отказано"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "%(date)s"
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, fuzzy, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
@@ -3607,7 +3654,7 @@ msgstr[0] "пре %(hr)d сат"
msgstr[1] "пре %(hr)d сати"
msgstr[2] ""
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, fuzzy, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
@@ -3615,7 +3662,7 @@ msgstr[0] "пре %(min)d минут"
msgstr[1] "пре %(min)d минута"
msgstr[2] ""
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
@@ -3623,14 +3670,14 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
#, fuzzy
msgid "Anonymous"
msgstr ""
@@ -3638,44 +3685,44 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"анонимный"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
#, fuzzy
msgid "Site Adminstrator"
msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "С уважением, Модератор форума"
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "Приостановленный пользователь "
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "Заблокированный пользователь"
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
#, fuzzy
msgid "Registered User"
msgstr "Регистровани корисник"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "Видный пользователь"
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "Утвержденный Пользователь"
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "%(reputation)s кармы %(username)s "
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
@@ -3683,7 +3730,7 @@ msgstr[0] "<span class=\"hidden\">%(count)d</span>золотая медаль"
msgstr[1] "%(count)d золотых медалей"
msgstr[2] "%(count)d золотых медалей"
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, fuzzy, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
@@ -3697,7 +3744,7 @@ msgstr[2] ""
"Obtaining silver badge requires significant patience. If you have received "
"one, that means you have greatly contributed to this community."
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, fuzzy, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
@@ -3711,22 +3758,22 @@ msgstr[2] ""
"If you are an active participant in this community, you will be recognized "
"with this badge."
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s и %(item2)s"
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr "%(user)s имеет %(badges)s"
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "Ознаке"
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -3735,7 +3782,7 @@ msgstr ""
"Поздравляем, вы получили '%(badge_name)s'. Проверьте свой <a href="
"\"%(user_profile)s\">профиль</a>."
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -4026,19 +4073,19 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Создал тег, использованный в 50 вопросах"
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "Эксперт"
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "Очень активны в одном теге"
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "Извините, вопрос удалён и более не доступен"
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
@@ -4046,12 +4093,12 @@ msgstr ""
"К сожалению, ответ который вы ищете больше не доступен, потому что вопрос "
"был удален"
-#: models/content.py:572
+#: models/post.py:1094
#, fuzzy
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "овај одговор је изабран као исправан"
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
@@ -4059,7 +4106,7 @@ msgstr ""
"К сожалению, комментарии который вы ищете больше не доступны, потому что "
"вопрос был удален"
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
@@ -4067,47 +4114,27 @@ msgstr ""
"К сожалению, комментарий который Вы ищете больше не доступен, потому что "
"ответ был удален"
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" и \"%s\""
-#: models/question.py:66
+#: models/question.py:57
#, fuzzy
msgid "\" and more"
msgstr "Сазнајте више"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s отредактировали вопрос"
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr "%(people)s задали новых %(new_answer_count)s вопросов"
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s оставили комментарии"
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s комментировали вопросы"
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s комментировали ответы"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "Како да потврдите е-пошту и зашто?"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>Изменено модератором. Причина:</em> %(reason)s"
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
@@ -4115,7 +4142,7 @@ msgid ""
msgstr ""
"%(points)s было добавлено за вклад %(username)s к вопросу %(question_title)s"
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
@@ -4124,70 +4151,72 @@ msgstr ""
"%(points)s было отобрано у %(username)s's за участие в вопросе "
"%(question_title)s"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "интересные"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "игнорируемые"
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "Весь форум"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Питања која сте поставили"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Питања на која сте одговорили"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "Индивидуально избранные вопросы"
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr "Упоминания и комментарии ответов"
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Мгновенно"
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Раз в день"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "Раз в неделю"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "Отменить"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
#, fuzzy
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Молимо Вас да унесете корисничко име и шифру"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
#, fuzzy
msgid "(or select another login method above)"
msgstr "молимо Вас изаберете једну од опција изнад"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
#, fuzzy
msgid "Sign in"
msgstr "пријава/"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Change Email"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -4197,41 +4226,39 @@ msgstr "Your email <i>(never shared)</i>"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
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/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
+msgid ""
"<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 "
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
"else."
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
msgstr ""
-"<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
-"anyone, must be valid)"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
#, fuzzy
msgid "Save Email"
msgstr "Change Email"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -4239,178 +4266,118 @@ msgstr "Change Email"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Откажите"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
#, fuzzy
msgid "Validate email"
msgstr "Како да потврдите е-пошту и зашто?"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
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/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
#, fuzzy
msgid "Email not changed"
msgstr "Е-пошта је промењена."
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
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/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
#, fuzzy
msgid "Email changed"
msgstr "Е-пошта је промењена."
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, 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 "
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "Email проверен"
-#: skins/common/templates/authopenid/changeemail.html:69
-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 "
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
"updates</strong> - then will be notified about changes <strong>once a day</"
-"strong> or less frequently."
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "Validation email not sent"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "Како да потврдите е-пошту и зашто?"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, 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 "
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
"necessary."
+msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "карма"
-#: skins/common/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/common/templates/authopenid/complete.html:30
-#, 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/common/templates/authopenid/complete.html:34
-#, 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/common/templates/authopenid/complete.html:37
-#, 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/common/templates/authopenid/complete.html:40
+#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
-msgid "This account already exists, please use another."
-msgstr "ова е-пошта је већ регистрована, молимо Вас унесите другу"
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr ""
-"<strong>Email Address</strong> (<i>will <strong>not</strong> be shared with "
-"anyone, must be valid</i>)"
+msgid "User registration"
+msgstr "карма"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
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/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
#, fuzzy
msgid "please select one of the options above"
msgstr "молимо Вас изаберете једну од опција изнад"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr ""
-"Фильтр тегов будет в правой панели, после того, как вы войдете в систему"
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "Signup"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+#, fuzzy
+msgid "Signup"
+msgstr "signup/"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -4436,9 +4403,10 @@ msgstr "са најмање гласова"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
@@ -4457,9 +4425,10 @@ msgid "Following the link above will help us verify your email address."
msgstr "Перейдя по ссылке выше, вы поможете нам проверить ваш email."
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
"Если вы считаете, что сообщение было отправлено по ошибке - никаких "
@@ -4509,10 +4478,11 @@ msgstr ""
"posted once you log in.</span>"
#: skins/common/templates/authopenid/signin.html:28
+#, fuzzy
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
"Выберите ваш сервис чтобы войти используя безопасную OpenID (или похожую) "
"технологию. Пароль к вашей внешней службе всегда конфиденциален и нет "
@@ -4560,135 +4530,100 @@ msgstr ""
"Пожалуйста, проверьте ваш email и пройдите по ссылке чтобы вновь войти в ваш "
"аккаунт"
-#: skins/common/templates/authopenid/signin.html:87
+#: skins/common/templates/authopenid/signin.html:89
#, fuzzy
-msgid "Please enter your <span>user name and password</span>, then sign in"
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Молимо Вас да унесете корисничко име и шифру"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "са најмање гласова"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr "Вход завершился неудачей, попробуйте ещё раз"
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
#, fuzzy
msgid "Login or email"
msgstr "Пријављивање није успело."
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
#, fuzzy
msgid "Password"
msgstr "Шифра:"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Пријава"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
"Чтобы изменить ваш пароль - пожалуйста, введите новый дважды и подтвердите "
"ввод"
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "Нова шифра је креирана"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
#, fuzzy
msgid "Please, retype"
msgstr "молимo Вас, поново откуцајте шифру"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr "Ваши текущие методы входа"
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr "провайдер"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "последњи пут виђен"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr "удалите, если хотите"
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "избриши"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "Налог је избрисан."
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "најновија питања"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr "Пожалуйста, введите ваш email-адрес ниже и получите новый ключ"
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
"Пожалуйста, введите ваш email-адрес ниже чтобы восстановить ваш аккаунт"
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr "Восстановить ваш аккаунт по email"
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr "Послать новый ключ восстановления"
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr "Восстановить ваш аккаунт используя email"
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr "Зашто користити OpenID?"
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr "With the OpenID you don't need to create new username and password."
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr "You can safely re-use the same login for all OpenID-enabled websites."
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-"
-"enabled."
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr "OpenID is based on an open standard, supported by many organizations."
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "Сазнајте више"
-
-#: skins/common/templates/authopenid/signin.html:233
-#, fuzzy
-msgid "Get OpenID"
-msgstr "Промени OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-#, fuzzy
-msgid "Signup"
-msgstr "signup/"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
#, fuzzy
msgid "Please register by clicking on any of the icons below"
@@ -4707,15 +4642,19 @@ msgstr ""
"><span class='grey'>(or select your OpenID provider above)</span>"
#: skins/common/templates/authopenid/signup_with_password.html:26
-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 "
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
"your login details with anyone and having to remember yet another password."
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
@@ -4723,16 +4662,11 @@ msgstr ""
"Пожалуйста, прочтите и укажите два слова ниже, чтобы помочь нам "
"предотвратить автоматизированные создания учетной записи."
-#: skins/common/templates/authopenid/signup_with_password.html:47
-#, fuzzy
-msgid "Create Account"
-msgstr "Отворите налог"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "или"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "вернуться к старнице OpenID входа"
@@ -4799,73 +4733,74 @@ msgstr ""
msgid "Delete These"
msgstr "обрисан одговор"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "трајни линк одговора"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "Одговорите на питање"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "трајни линк"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "линк"
+
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "undelete"
+
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "edit"
-msgstr "уреди/"
+msgid "remove offensive flag"
+msgstr "означено увредљивим"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
#, fuzzy
-msgid "remove all flags"
+msgid "remove flag"
msgstr "ресетујте ознаке"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
"сообщить о спаме (т.е. сообщениях содержащих спам, рекламу, вредоносные "
"ссылки и т.д.)"
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "означи увредљивим"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
#, fuzzy
-msgid "remove flag"
-msgstr "ресетујте ознаке"
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "undelete"
+msgid "edit"
+msgstr "уреди/"
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Одговорите на питање"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "овај одговор је изабран као исправан"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
#, fuzzy
msgid "mark this answer as correct (click again to undo)"
msgstr "означи овај одговор као омиљени (кликните поново да бисте отказали)"
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, fuzzy, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "аутор питања је изабрао овај одговор као прави"
-
#: skins/common/templates/question/closed_question_info.html:2
#, fuzzy, python-format
msgid ""
@@ -4883,62 +4818,70 @@ msgstr "датум затварања %(closed_at)s"
#: skins/common/templates/question/question_controls.html:6
#, fuzzy
-msgid "retag"
-msgstr "ретаговано"
-
-#: skins/common/templates/question/question_controls.html:13
-#, fuzzy
msgid "reopen"
msgstr "отворипоново/"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "затвори"
-#: skins/common/templates/widgets/edit_post.html:21
+#: skins/common/templates/question/question_controls.html:35
+#, fuzzy
+msgid "retag"
+msgstr "ретаговано"
+
+#: skins/common/templates/widgets/edit_post.html:22
#, fuzzy
-msgid "one of these is required"
+msgid ", one of these is required"
msgstr "ово поље је обавезно"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "ознаке"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(обавезно)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Включить/выключить предварительный просмотр текста"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
#, fuzzy
msgid "hide preview"
msgstr "преглед"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Ознаке"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr "Занимљиве ознаке"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
#, fuzzy
msgid "add"
msgstr "Додајте"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "Игнорисане ознаке"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr "Фильтр по тегам"
@@ -4990,7 +4933,7 @@ msgid "back to previous page"
msgstr "назад на предходну страну"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
#, fuzzy
msgid "see all questions"
msgstr "поставите питање"
@@ -5026,11 +4969,6 @@ msgstr "најновија питања"
msgid "see tags"
msgstr "ресетујте ознаке"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -5060,18 +4998,21 @@ msgstr "Сачувајте промену"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
#, fuzzy
msgid "show preview"
msgstr "преглед"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "Поставите питање"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "Поставите Ваше Питање"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr "%(name)s"
@@ -5090,8 +5031,8 @@ msgstr ""
"%(name)s"
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, fuzzy, python-format
msgid "%(description)s"
msgstr "питања"
@@ -5103,12 +5044,7 @@ msgstr[0] "пользователь, получивший этот значок"
msgstr[1] "пользователя, получивших этот значок"
msgstr[2] "пользователей, получивших этот значок"
-#: skins/default/templates/badges.html:3
-#, fuzzy
-msgid "Badges summary"
-msgstr "ажурирање резимеа:"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
#, fuzzy
msgid "Badges"
msgstr "беџеви"
@@ -5123,48 +5059,45 @@ msgstr ""
#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"Below is the list of available badges and number \n"
" of times each type of badge has been awarded. Have ideas about fun "
"badges? Please, give us your <a href='%(feedback_faq_url)s'>feedback</a>"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Беџеви - нивои"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr "золотая медаль: высокая честь и очень редкая награда"
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr ""
-"Gold badge is the highest award in this community. To obtain it have to show "
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr "серебряная медаль: иногда присуждается за большой вклад"
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
-msgstr ""
-"Obtaining silver badge requires significant patience. If you have received "
-"one, that means you have greatly contributed to this community."
+#: skins/default/templates/badges.html:51
+#, fuzzy
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
+msgstr "серебряная медаль: иногда присуждается за большой вклад"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "бронзовый значок: часто даётся как особая заслуга"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr ""
-"If you are an active participant in this community, you will be recognized "
-"with this badge."
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Затвори питање"
@@ -5182,11 +5115,10 @@ msgstr "Разлози"
msgid "OK to close"
msgstr "датум затварања"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr "FAQ"
@@ -5207,15 +5139,17 @@ msgstr ""
"сообщества."
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Before you ask - please make sure to search for a similar question. You can "
"search questions by their title or tags."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "What kinds of questions should be avoided?"
#: skins/default/templates/faq_static.html:11
@@ -5233,14 +5167,11 @@ msgstr "What kinds of questions should be avoided?"
#: skins/default/templates/faq_static.html:14
msgid ""
-"is a Q&A site, not a discussion group. Therefore - please avoid having "
-"discussions in your answers, comment facility allows some space for brief "
-"discussions."
-msgstr ""
"is a <strong>question and answer</strong> site - <strong>it is not a "
"discussion group</strong>. Please avoid holding debates in your answers as "
"they tend to dilute the essense of questions and answers. For the brief "
"discussions please use commenting facility."
+msgstr ""
#: skins/default/templates/faq_static.html:15
#, fuzzy
@@ -5256,24 +5187,26 @@ msgid "This website is moderated by the users."
msgstr "Этот сайт находится под управлением самих пользователей."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"Karma system allows users to earn rights to perform a variety of moderation "
"tasks"
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "Како систем карме функционише?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr ""
+msgid ""
"When a question or answer is upvoted, the user who posted them will gain "
-"some points, which are called \"karma points\". These points serve as a "
+"some points, which are called \\\"karma points\\\". These points serve as a "
"rough measure of the community trust to him/her. Various moderation tasks "
"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -5303,59 +5236,53 @@ msgstr ""
msgid "upvote"
msgstr "upvoted"
-#: skins/default/templates/faq_static.html:37
-#, fuzzy
-msgid "use tags"
-msgstr "ресетујте ознаке"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
#, fuzzy
msgid "add comments"
msgstr "унесите коментар"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
#, fuzzy
msgid "downvote"
msgstr "downvoted"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "погледајте питања без одговора"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
#, fuzzy
msgid "open and close own questions"
msgstr "Затвори питање"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
#, fuzzy
msgid "retag other's questions"
msgstr "најновија питања"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
#, fuzzy
msgid "edit community wiki questions"
msgstr "вики"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "измењен одговор"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "\"delete any comment"
+msgid "delete any comment"
msgstr "избриши овај коментар"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "Како да промените своју слику (gravatar) и шта је gravatar?"
-
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
msgstr ""
+
+#: skins/default/templates/faq_static.html:70
+msgid ""
"<p>The picture that appears on the users profiles is called "
"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
@@ -5369,12 +5296,13 @@ msgstr ""
"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
"be sure to use the same email address that you used to register with us). "
"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Необходимо ли создавать новый пароль, чтобы зарегистрироваться?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
@@ -5382,20 +5310,20 @@ msgstr ""
"Нет, этого делать нет необходимости. Вы можете Войти через любой сервис, "
"который поддерживает OpenID, например, Google, Yahoo, AOL и т.д."
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
#, fuzzy
msgid "\"Login now!\""
msgstr "Одјава"
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "Почему другие люди могут изменять мои вопросы / ответы?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr "Цель этого сайта ..."
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "
@@ -5405,20 +5333,20 @@ msgstr ""
"ответы как страницы вики, что в свою очередь улучшает качество содержания "
"базы данных вопросов/ответов."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr "Если этот подход не для вас, мы уважаем ваш выбор."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
#, fuzzy
msgid "Still have questions?"
msgstr "најновија питања"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Please <a href='%(ask_question_url)s'>ask</a> your question, help make our "
"community better!"
@@ -5494,6 +5422,68 @@ msgstr ""
"\n"
"Здравствуйте, это сообщение обратной связи с форума: %(site_title)s\n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "Одаберете корисничко име"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5619,52 +5609,51 @@ msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr "Поново отворите ово питање"
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-#, fuzzy
-msgid "i like this question (click again to cancel)"
-msgstr "свиђа ми се овај одговор (кликните поново да бисте отказали)"
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "свиђа ми се овај одговор (кликните поново да бисте отказали)"
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr "текущее число голосов"
-#: skins/default/templates/macros.html:43
-#, fuzzy
-msgid "i dont like this question (click again to cancel)"
-msgstr "не свиђа ми се овај одговор (кликните поново да бисте отказали)"
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr "не свиђа ми се овај одговор (кликните поново да бисте отказали)"
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr ""
@@ -5672,11 +5661,11 @@ msgstr ""
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr "пост отмечен как вики сообщества"
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
@@ -5684,126 +5673,101 @@ msgid ""
msgstr ""
"Этот пост - вики. Любой с кармой &gt;%(wiki_min_rep)s может улучшить его."
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "питано"
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
#, fuzzy
msgid "answered"
msgstr "неодговорена"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "опубликовал"
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
#, fuzzy
msgid "updated"
msgstr "Ажурирајте"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, fuzzy, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "Затвори питање"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "избриши овај коментар"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "унесите коментар"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] ""
-"смотреть еще <span class=\"hidden\">%(counter)s</span><strong>один</strong>"
-msgstr[1] "смотреть еще <strong>%(counter)s</strong>"
-msgstr[2] "смотреть еще <strong>%(counter)s</strong>"
-
-#: skins/default/templates/macros.html:310
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] ""
-"смотреть еще <span class=\"hidden\">%(counter)s</span><strong>один</strong> "
-"комментарий"
-msgstr[1] "смотреть еще <strong>%(counter)s</strong> комментария"
-msgstr[2] "смотреть еще <strong>%(counter)s</strong> комментариев"
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "%(username)s gravatar слика"
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "кориснички профил"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "претходна"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
#, fuzzy
msgid "current page"
msgstr "следећа странa"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "страна %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "следећа странa"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "постова по страни"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, fuzzy, python-format
msgid "responses for %(username)s"
msgstr "Одаберете корисничко име"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, fuzzy, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "одговори"
msgstr[1] "одговори"
msgstr[2] "одговори"
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
#, fuzzy
msgid "no new responses yet"
msgstr "одговори"
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, fuzzy, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "Први означени пост"
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, fuzzy, python-format
msgid "%(new)s new flagged posts"
msgstr "Први означени пост"
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, fuzzy, python-format
msgid "%(seen)s flagged posts"
msgstr "Први означени пост"
@@ -5812,11 +5776,39 @@ msgstr "Први означени пост"
msgid "Questions"
msgstr "Питања"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
+#: skins/default/templates/question.html:110
#, fuzzy
-msgid "Privacy policy"
-msgstr "политика приватности"
+msgid "post a comment / <strong>some</strong> more"
+msgstr ""
+"смотреть еще <span class=\"hidden\">%(counter)s</span><strong>один</strong>"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr ""
+"смотреть еще <span class=\"hidden\">%(counter)s</span><strong>один</strong>"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "Разместил 10 комментариев"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Одговорите на ваше питање"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "Ваш одговор"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Login/Signup to Post"
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
@@ -5825,8 +5817,9 @@ msgstr "Измени питање"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Промените ознаке"
+#, fuzzy
+msgid "Retag question"
+msgstr "Слична питања"
#: skins/default/templates/question_retag.html:21
#, fuzzy
@@ -5888,6 +5881,13 @@ msgstr "Поново отворите ово питање"
msgid "Reopen this question"
msgstr "Поново отворите ово питање"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5919,17 +5919,17 @@ msgstr "Питање је затворено из следећих разлог
msgid "Subscribe"
msgstr "ресетујте ознаке"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Списак ознака"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Списак ознака"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
#, fuzzy
msgid "Sort by &raquo;"
msgstr "Сортирај:"
@@ -5950,7 +5950,7 @@ msgstr "сортировать по частоте использования т
msgid "by popularity"
msgstr "по популарности"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "Ништа није пронађено"
@@ -5964,8 +5964,14 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "карма"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+#, fuzzy
+msgid "karma"
+msgstr ""
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"карма:"
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5996,7 +6002,7 @@ msgstr "пользователей, соответствующих запрос
msgid "Nothing found."
msgstr "Ништа није пронађено."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, fuzzy, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -6014,40 +6020,40 @@ msgstr "при помощи %(author_name)s"
msgid "Tagged"
msgstr "означено"
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr "Савети за претраживање:"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr "ресетујте аутора"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
#, fuzzy
msgid " or "
msgstr "или"
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr "ресетујте ознаке"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr "крените изпочетка"
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr "- расширить или сузить, добавляя свои метки и получая запрос."
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr "Савет за претраживање:"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr "додајте ознаке и упит да сузите претрагу"
@@ -6099,21 +6105,21 @@ msgstr ""
"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."
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr "Не нашли то, что искали?"
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
#, fuzzy
msgid "Please, post your question!"
msgstr "Поставите Ваше Питање"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
#, fuzzy
msgid "subscribe to the questions feed"
msgstr "најновија питања"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -6125,7 +6131,7 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, fuzzy, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
@@ -6133,7 +6139,7 @@ msgstr[0] "свака ознака мора имати мање од %(max_chars
msgstr[1] "свака ознака мора имати мање од %(max_chars)d карактера"
msgstr[2] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, fuzzy, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
@@ -6141,7 +6147,7 @@ msgstr[0] "користите %(tag_count)d ознаку или мање"
msgstr[1] "користите %(tag_count)d ознака или мање"
msgstr[2] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, fuzzy, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -6151,11 +6157,11 @@ msgstr "до 5 ознака, мање од 20 карактера у свакој
#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
@@ -6164,88 +6170,71 @@ msgstr[1] ""
"\n"
"(%(comment_count)s comments)"
+#: skins/default/templates/question/answer_tab_bar.html:11
+#, fuzzy
+msgid "Sort by »"
+msgstr ""
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"Сортирај:\n"
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"Упорядочить по:"
+
#: skins/default/templates/question/answer_tab_bar.html:14
#, fuzzy
msgid "oldest answers will be shown first"
msgstr " "
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "стара"
-
#: skins/default/templates/question/answer_tab_bar.html:17
#, fuzzy
msgid "newest answers will be shown first"
msgstr " "
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "нова"
-
#: skins/default/templates/question/answer_tab_bar.html:20
#, fuzzy
msgid "most voted answers will be shown first"
msgstr " "
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "популарна"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "Одговорите на ваше питање"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "Login/Signup to Post"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "Ваш одговор"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr "Будите први који ћете дати одговор на ово питање!"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
"<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/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:36
+msgid ""
"<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/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+"not like)!"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
"<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/new_answer_form.html:43
-#, fuzzy
-msgid "Login/Signup to Post Your Answer"
-msgstr "Login/Signup to Post"
-
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Одговорите на питање"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -6264,37 +6253,37 @@ msgstr "или"
msgid "email"
msgstr "е-пошта/"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Ознаке"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "questions with most answers"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "Сва питања"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "Сва питања"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "questions with most answers"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "Сва питања"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
@@ -6302,23 +6291,23 @@ msgstr[0] "%(count)s закладка"
msgstr[1] "%(count)s закладки"
msgstr[2] "%(count)s закладок"
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "Задњи пут ажурирано"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr "получать обновления по email"
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "најновија питања"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "најновија питања"
@@ -6332,56 +6321,45 @@ msgstr ""
"Статистика"
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "Питано"
+#, fuzzy
+msgid "Asked"
+msgstr "питано"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "Прегледано"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "пута"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "Задњи пут ажурирано"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "Слична питања"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+#, fuzzy
+msgid "Email me when there are any new answers"
msgstr ""
-"<strong>Notify me</strong> once a day by email when there are any new "
-"answers or updates"
+"<strong>Notify me</strong> weekly when there are any new answers or updates"
#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
+msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
-"<strong>Notify me</strong> weekly when there are any new answers or updates"
+"<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/subscribe_by_email_prompt.html:13
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
#, fuzzy
-msgid "Notify me immediately when there are any new answers"
-msgstr ""
-"<strong>Notify me</strong> weekly when there are any new answers or updates"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, 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/subscribe_by_email_prompt.html:21
-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."
+msgstr "получать обновления по email"
#: skins/default/templates/user_profile/user.html:12
#, fuzzy, python-format
@@ -6418,8 +6396,13 @@ msgstr "Регистровани корисник"
msgid "Screen Name"
msgstr "Корисничко, (видљиво) име"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "Налог је избрисан."
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Ажурирајте"
@@ -6439,18 +6422,20 @@ msgstr ""
"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_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr ""
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Stop Email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -6479,21 +6464,25 @@ msgid "flagged items (%(flag_count)s)"
msgstr "користите %(tag_count)d ознаку или мање"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
#, fuzzy
msgid "select:"
msgstr "избриши"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
#, fuzzy
msgid "seen"
msgstr "последњи пут виђен"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
#, fuzzy
msgid "new"
msgstr "најновија"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
#, fuzzy
msgid "none"
msgstr "бронза"
@@ -6512,6 +6501,16 @@ msgstr "означен најбољи одговор"
msgid "dismiss"
msgstr "удалить"
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "ресетујте ознаке"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "избриши"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "ажурирајте профил"
@@ -6526,7 +6525,8 @@ msgid "real name"
msgstr "право име"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "члан од"
#: skins/default/templates/user_profile/user_info.html:63
@@ -6534,8 +6534,9 @@ msgid "last seen"
msgstr "последњи пут виђен"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr "корисников веб сајт"
+#, fuzzy
+msgid "website"
+msgstr "Вебсајт"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -6687,24 +6688,17 @@ msgid "%(username)s's network is empty"
msgstr "кориснички профил"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
#, fuzzy
msgid "activity"
msgstr "активна"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-#, fuzzy
-msgid "karma"
-msgstr ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"карма:"
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "Евиденција промене Ваше карме."
@@ -6737,31 +6731,18 @@ msgstr[2] ""
"<span class=\"count\">%(counter)s</span> Вопроса"
#: skins/default/templates/user_profile/user_stats.html:16
-#, fuzzy, python-format
-msgid "<span class=\"count\">%(counter)s</span> Answer"
-msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
-msgstr[0] ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"<span class=\"count\">1</span> Ответ"
-msgstr[1] ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"<span class=\"count\">%(counter)s</span> Ответов"
-msgstr[2] ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"<span class=\"count\">%(counter)s</span> Ответа"
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "одговор"
+msgstr[1] "одговор"
+msgstr[2] "одговор"
#: skins/default/templates/user_profile/user_stats.html:24
#, fuzzy, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "овај одговор је изабран као исправан"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "овај одговор је изабран као исправан"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6820,7 +6801,7 @@ msgstr[2] ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"<span class=\"count\">%(counter)s</span> Тега"
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
@@ -6828,7 +6809,7 @@ msgstr[0] "<span class=\"count\">%(counter)s</span> Медаль"
msgstr[1] "<span class=\"count\">%(counter)s</span> Медали"
msgstr[2] "<span class=\"count\">%(counter)s</span> Медалей"
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "Савети"
@@ -6838,7 +6819,7 @@ msgstr "Савети"
msgid "User profile"
msgstr "кориснички профил"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "комментарии и ответы на другие вопросы"
@@ -6847,51 +6828,42 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "Graph of user karma"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "karma history"
-
#: skins/default/templates/user_profile/user_tabs.html:25
#, fuzzy
msgid "questions that user is following"
msgstr "Питање је затворено из следећих разлога"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "недавне активности"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "голос пользователя"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "votes"
+#: skins/default/templates/user_profile/user_votes.html:4
+#, fuzzy
+msgid "votes"
+msgstr "гласај/"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "настройки подписки по электронной почте"
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
#, fuzzy
msgid "moderate this user"
msgstr "Модеришите овог корисника"
-#: skins/default/templates/user_profile/user_votes.html:4
-#, fuzzy
-msgid "votes"
-msgstr "гласај/"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "Савети"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
#, fuzzy
-msgid "please make your answer relevant to this community"
+msgid "give an answer interesting to this community"
msgstr "ask a question interesting to this community"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6906,8 +6878,9 @@ msgstr ""
"best questions and answers!"
#: skins/default/templates/widgets/answer_edit_tips.html:12
+#: skins/default/templates/widgets/question_edit_tips.html:8
#, fuzzy
-msgid "please try to provide details"
+msgid "provide enough details"
msgstr "provide enough details"
#: skins/default/templates/widgets/answer_edit_tips.html:15
@@ -6922,7 +6895,8 @@ msgstr "погледајте често постављана питања"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Markdown основе"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6947,11 +6921,6 @@ msgid "**bold** or __bold__"
msgstr "**подебљано** или __подебљано__"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "линк"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6979,10 +6948,6 @@ msgstr "i-names нису подржанa"
msgid "learn more about Markdown"
msgstr "узнайте болше про Markdown"
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "поставите питање"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
@@ -6992,27 +6957,25 @@ msgstr ""
"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."
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"<span class='strong big'>Looks like your email address, %(email)s has not "
+
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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>."
+"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/widgets/ask_form.html:42
-#, fuzzy
-msgid "Login/signup to post your question"
-msgstr "Login/Signup to Post"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Поставите Ваше Питање"
+"question will saved as pending meanwhile."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
#, fuzzy
@@ -7029,10 +6992,15 @@ msgid "about"
msgstr "о нама"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "политика приватности"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "сугестије и žалбе"
@@ -7053,18 +7021,11 @@ msgstr "корисници"
msgid "badges"
msgstr "беџеви"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "Савети"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
+#, fuzzy
+msgid "ask a question interesting to this community"
msgstr "ask a question interesting to this community"
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "provide enough details"
-
#: skins/default/templates/widgets/question_summary.html:12
#, fuzzy
msgid "view"
@@ -7089,28 +7050,28 @@ msgstr[0] "гласај/"
msgstr[1] "гласај/"
msgstr[2] "гласај/"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr "погледајте питања без одговора"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "погледајте Ваша омиљена питања"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "Поставите Ваше Питање"
@@ -7124,24 +7085,27 @@ msgstr "карма:"
msgid "badges:"
msgstr "беџеви"
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "одјава"
+#: skins/default/templates/widgets/user_navigation.html:9
+#, fuzzy
+msgid "sign out"
+msgstr "одјава/"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "пријава"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "са најмање гласова"
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
#, fuzzy
msgid "settings"
msgstr "ресетујте ознаке"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "без"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr "бронза"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr "Извините, произошла ошибка!"
@@ -7159,7 +7123,8 @@ msgid "this field is required"
msgstr "ово поље је обавезно"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "Одаберете корисничко име"
#: utils/forms.py:69
@@ -7195,8 +7160,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "Your email <i>(never shared)</i>"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -7210,17 +7175,13 @@ msgstr "унесите валидну е-пошту"
msgid "this email is already used by someone else, please choose another"
msgstr "ову е-пошту већ користи неки корисник, изаберите другу"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "Шифра"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "шифра је неопходна"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "Шифра <i>(поново откуцајте)</i>"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -7230,15 +7191,15 @@ msgstr "молимo Вас, поново откуцајте шифру"
msgid "sorry, entered passwords did not match, please try again"
msgstr "унета шифра не одговара, покушајте поново"
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "пре 2 дана"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "јуче"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, fuzzy, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
@@ -7246,7 +7207,7 @@ msgstr[0] "пре %(hr)d сат"
msgstr[1] "пре %(hr)d сати"
msgstr[2] ""
-#: utils/functions.py:85
+#: utils/functions.py:93
#, fuzzy, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
@@ -7254,6 +7215,37 @@ msgstr[0] "пре %(min)d минут"
msgstr[1] "пре %(min)d минута"
msgstr[2] ""
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -7266,53 +7258,55 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr "неавторизированные пользователи не имеют доступа к папке \"входящие\""
+
+#: views/commands.py:112
#, fuzzy
-msgid "anonymous users cannot vote"
+msgid "Sorry, anonymous users cannot vote"
msgstr ""
"Sorry, your account appears to be suspended and you cannot make new posts "
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "Извините, вы исчерпали лимит голосования за сегодня"
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "Вы можете голосовать сегодня ещё %(votes_left)s раз"
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "неавторизированные пользователи не имеют доступа к папке \"входящие\""
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "Извините, что-то не здесь..."
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr ""
"неавторизированные пользователи не могут отмечать ответы как правильные"
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr ""
"Ваша претплата је сачувана, али е-пошту %(email)s је потребно проверити, "
"погледајте <a href='%(details_url)s'>овде за више информација</a>"
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "частота обновлений по email была установлена в ежедневную"
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, fuzzy, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
@@ -7320,24 +7314,39 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Пожалуйста, войдите здесь:"
-#: views/commands.py:578
+#: views/commands.py:600
#, fuzzy
msgid "Please sign in to vote"
msgstr "са најмање гласова"
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "са најмање гласова"
+
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "%(date)s"
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "П&О форум сугестије"
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Хвала на сугестији!"
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr "Мы с нетерпением ждем ваших отзывов!"
-#: views/readers.py:152
+#: views/meta.py:106
+#, fuzzy
+msgid "Privacy policy"
+msgstr "политика приватности"
+
+#: views/readers.py:133
#, fuzzy, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
@@ -7345,114 +7354,110 @@ msgstr[0] "Једно питање"
msgstr[1] "%(q_num)s питања"
msgstr[2] ""
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d %(badge_level)s медаль"
-msgstr[1] "%(badge_count)d %(badge_level)s медали"
-msgstr[2] "%(badge_count)d %(badge_level)s медалей"
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr "Извините, но запрашиваемый комментарий был удалён"
-#: views/users.py:212
+#: views/users.py:206
#, fuzzy
msgid "moderate user"
msgstr "moderate-user/"
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "кориснички профил"
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "преглед корисниковог профила"
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "недавне активности корисника"
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "профил - недавне активности"
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "профил - одговори"
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "профил - гласови"
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "корисникова карма"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr ""
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"карма:"
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "профил - корисникова карма"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "омиљена питања корисника"
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "профил - омиљена питања"
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "промене су сачуване"
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "обновления по email отменены"
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "профил - претплата е-поштом"
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr "неавторизированные пользователи не могут загружать файлы"
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "дозвољени типови датотека су '%(file_types)s'"
-#: views/writers.py:92
+#: views/writers.py:84
#, fuzzy, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "максимална величина датотеке за слање на сервер је %sK"
-#: views/writers.py:100
+#: views/writers.py:92
#, fuzzy
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
"Грешка при слању датотеке. Молимо Вас да контактирате администратора сајта. "
"Хвала Вам. %s"
-#: views/writers.py:192
-#, fuzzy
-msgid "Please log in to ask questions"
-msgstr ""
+#: views/writers.py:189
+msgid ""
"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
#, fuzzy
msgid "Please log in to answer questions"
msgstr "погледајте питања без одговора"
-#: views/writers.py:600
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -7461,7 +7466,7 @@ msgstr ""
"Извините, вы не вошли, поэтому не можете оставлять комментарии. <a href="
"\"%(sign_in_url)s\">Войдите</a>."
-#: views/writers.py:649
+#: views/writers.py:589
#, fuzzy
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
@@ -7469,7 +7474,7 @@ msgstr ""
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: views/writers.py:658
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -7478,10 +7483,660 @@ msgstr ""
"Извините, вы не вошли, поэтому не можете удалять комментарии. <a href="
"\"%(sign_in_url)s\">Войдите</a>."
-#: views/writers.py:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "Извините, у нас определённые технические проблемы."
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "користите-ове-каратере-у-ознакама"
+
+#, fuzzy
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "ова е-пошта не мора бити повезана са gravatar-ом"
+
+#~ msgid "URL for the LDAP service"
+#~ msgstr "URL, по которому доступен сервис LDAP"
+
+#, fuzzy
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Change your password"
+
+#~ msgid "question_answered"
+#~ msgstr "одговорено питање"
+
+#~ msgid "question_commented"
+#~ msgstr "коментарисано питање"
+
+#, fuzzy
+#~ msgid "answer_commented"
+#~ msgstr "одговор коментарисао"
+
+#~ msgid "answer_accepted"
+#~ msgstr "прихваћен одговор"
+
+#~ msgid "Incorrect username."
+#~ msgstr "Погрешно корисничко име."
+
+#, fuzzy
+#~ 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>%(name)s,</p></p>Следеће питање је ажурирано на П&О форуму:</p>"
+#~ msgstr[1] ""
+#~ "<p>%(name)s,</p><p>Следећих %(num)d питања је ажурирано на П&О форуму:</p>"
+#~ msgstr[2] ""
+
+#~ 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 ""
+#~ "Пожалуйста, зайдите на наш форум и посмотрите что есть нового. Может быть "
+#~ "Вы расскажете другим о нашем сайте или кто-нибудь из Ваших знакомых может "
+#~ "ответить на эти вопросы или извлечь пользу из ответов?"
+
+#~ 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 ""
+#~ "Ваша наиболее частая настройка оповещения по email - ежедневная. Если вы "
+#~ "получаете email чаще, пожалуйста, известите администратора форума."
+
+#~ 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 ""
+#~ "Ваша наиболее частая настройка оповещения по email - еженедельная. Если "
+#~ "вы получаете email чаще, пожалуйста, известите администратора форума."
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr ""
+#~ "Не исключено что Вы можете получить ссылки, которые видели раньше. Это "
+#~ "исчезнет спустя некоторое время."
+
+#, fuzzy
+#~ msgid ""
+#~ "go to %(email_settings_link)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 ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr ""
+#~ "нажалост, слање датотека на сервер захтева да имате карму >%(min_rep)s"
+
+#, fuzzy
+#~ msgid "blocked users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr "нельзя пометить сообщение как оскорбительное дважды"
+
+#, fuzzy
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr "необходимо > %(min_rep)s баллов чтобы отметить как спам"
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr "%(max_flags_per_day)s превышен"
+
+#, fuzzy
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#, fuzzy
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "необходимо > %(min_rep)s баллов чтобы отметить как спам"
+#~ msgstr[1] ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "необходимо > %(min_rep)s баллов чтобы отметить как спам"
+#~ msgstr[2] ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "необходимо > %(min_rep)s баллов чтобы отметить как спам"
+
+#, fuzzy
+#~ msgid "cannot revoke old vote"
+#~ msgstr "гласање је отказано"
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s отредактировали вопрос"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr "%(people)s задали новых %(new_answer_count)s вопросов"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s оставили комментарии"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s комментировали вопросы"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s комментировали ответы"
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Enter your new email into the box below</span> "
+#~ "if you'd like to use another email for <strong>update subscriptions</"
+#~ "strong>.<br>Currently you are using <strong>%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Please enter your email address in the box below."
+#~ "</span> Valid email address is required on this Q&amp;A forum. If you "
+#~ "like, you can <strong>receive updates</strong> on interesting questions "
+#~ "or entire forum via email. Also, your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. Email addresses are never shown or otherwise shared with anybody "
+#~ "else."
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
+#~ "anyone, must be valid)"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">An email with a validation link has been sent "
+#~ "to %(email)s.</span> Please <strong>follow the emailed link</strong> with "
+#~ "your web browser. Email validation is necessary to help insure the proper "
+#~ "use of email on <span class=\"orange\">Q&amp;A</span>. If you would like "
+#~ "to use <strong>another email</strong>, please <a "
+#~ "href='%(change_email_url)s'><strong>change it again</strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Your email address %(email)s has not been "
+#~ "changed.</span> If you decide to change it later - you can always do it "
+#~ "by editing it in your user profile or by using the <a "
+#~ "href='%(change_email_url)s'><strong>previous form</strong></a> again."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Your email address is now set to %(email)s.</"
+#~ "span> Updates on the questions that you like most will be sent to this "
+#~ "address. Email notifications are sent once a day or less frequently - "
+#~ "only when there are any news."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Thank you for verifying your email!</span> Now "
+#~ "you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+#~ "if you find a very interesting question you can <strong>subscribe for the "
+#~ "updates</strong> - then will be notified about changes <strong>once a "
+#~ "day</strong> or less frequently."
+
+#~ msgid "email key not sent"
+#~ msgstr "Validation email not sent"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Your current email address %(email)s has been "
+#~ "validated before</span> so the new key was not sent. You can <a "
+#~ "href='%(change_link)s'>change</a> email used for update subscriptions if "
+#~ "necessary."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "%(provider)s login.</span> Please create your <strong>screen name</"
+#~ "strong> and save your <strong>email</strong> address. Saved email address "
+#~ "will let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<p><span class='strong big'>Oops... looks like screen name %(username)s "
+#~ "is already used in another account.</span></p><p>Please choose another "
+#~ "screen name to use with your %(provider)s login. Also, a valid email "
+#~ "address is required on the <span class='orange'>Q&amp;A</span> forum. "
+#~ "Your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. If you like, you can <strong>receive updates</strong> on the "
+#~ "interesting questions or entire forum by email. Email addresses are never "
+#~ "shown or otherwise shared with anybody else.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "%(provider)s login.</span></p><p>You can either keep your <strong>screen "
+#~ "name</strong> the same as your %(provider)s login name or choose some "
+#~ "other nickname.</p><p>Also, please save a valid <strong>email</strong> "
+#~ "address. With the email you can <strong>subscribe for the updates</"
+#~ "strong> on the most interesting questions. Email address is also used to "
+#~ "create and retrieve your unique avatar image - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "Facebook login.</span> Please create your <strong>screen name</strong> "
+#~ "and save your <strong>email</strong> address. Saved email address will "
+#~ "let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#, fuzzy
+#~ msgid "This account already exists, please use another."
+#~ msgstr "ова е-пошта је већ регистрована, молимо Вас унесите другу"
+
+#~ msgid "Screen name label"
+#~ msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
+
+#~ msgid "Email address label"
+#~ msgstr ""
+#~ "<strong>Email Address</strong> (<i>will <strong>not</strong> be shared "
+#~ "with anyone, must be valid</i>)"
+
+#~ 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."
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr ""
+#~ "Фильтр тегов будет в правой панели, после того, как вы войдете в систему"
+
+#~ msgid "create account"
+#~ msgstr "Signup"
+
+#~ 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 ""
+#~ "Если вы считаете, что сообщение было отправлено по ошибке - никаких "
+#~ "дальнейших действий не требуется. Просто проигнорируйте это письмо, мы "
+#~ "приносим свои извинения за причиненные неудобства."
+
+#~ msgid "Login"
+#~ msgstr "Пријава"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "Зашто користити OpenID?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "With the OpenID you don't need to create new username and password."
+
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "You can safely re-use the same login for all OpenID-enabled websites."
+
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "There are > 160,000,000 OpenID account in use. Over 10,000 sites are "
+#~ "OpenID-enabled."
+
+#~ msgid "openid is supported open standard"
+#~ msgstr ""
+#~ "OpenID is based on an open standard, supported by many organizations."
+
+#~ msgid "Find out more"
+#~ msgstr "Сазнајте више"
+
+#, fuzzy
+#~ msgid "Get OpenID"
+#~ msgstr "Промени OpenID"
+
+#~ 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."
+
+#, fuzzy
+#~ msgid "Create Account"
+#~ msgstr "Отворите налог"
+
+#~ msgid "answer permanent link"
+#~ msgstr "трајни линк одговора"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "ресетујте ознаке"
+
+#, fuzzy
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "аутор питања је изабрао овај одговор као прави"
+
+#~ msgid "Related tags"
+#~ msgstr "Ознаке"
+
+#~ msgid "Ask a question"
+#~ msgstr "Поставите питање"
+
+#, fuzzy
+#~ msgid "Badges summary"
+#~ msgstr "ажурирање резимеа:"
+
+#~ msgid "gold badge description"
+#~ msgstr ""
+#~ "Gold badge is the highest award in this community. To obtain it have to "
+#~ "show profound knowledge and ability in addition to your active "
+#~ "participation."
+
+#~ msgid "silver badge description"
+#~ msgstr ""
+#~ "Obtaining silver badge requires significant patience. If you have "
+#~ "received one, that means you have greatly contributed to this community."
+
+#~ msgid "bronze badge description"
+#~ msgstr ""
+#~ "If you are an active participant in this community, you will be "
+#~ "recognized with this badge."
+
+#~ msgid ""
+#~ "is a Q&A site, not a discussion group. Therefore - please avoid having "
+#~ "discussions in your answers, comment facility allows some space for brief "
+#~ "discussions."
+#~ msgstr ""
+#~ "is a <strong>question and answer</strong> site - <strong>it is not a "
+#~ "discussion group</strong>. Please avoid holding debates in your answers "
+#~ "as they tend to dilute the essense of questions and answers. For the "
+#~ "brief discussions please use commenting facility."
+
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "When a question or answer is upvoted, the user who posted them will gain "
+#~ "some points, which are called \"karma points\". These points serve as a "
+#~ "rough measure of the community trust to him/her. Various moderation tasks "
+#~ "are gradually assigned to the users based on those points."
+
+#, fuzzy
+#~ msgid "use tags"
+#~ msgstr "ресетујте ознаке"
+
+#~ msgid "what is gravatar"
+#~ msgstr "Како да промените своју слику (gravatar) и шта је gravatar?"
+
+#~ msgid "gravatar faq info"
+#~ msgstr ""
+#~ "<p>The picture that appears on the users profiles is called "
+#~ "<strong>gravatar</strong> (which means <strong>g</strong>lobally "
+#~ "<strong>r</strong>ecognized <strong>avatar</strong>).</p><p>Here is how "
+#~ "it works: a <strong>cryptographic key</strong> (unbreakable code) is "
+#~ "calculated from your email address. You upload your picture (or your "
+#~ "favorite alter ego image) the website <a href='http://gravatar."
+#~ "com'><strong>gravatar.com</strong></a> from where we later retreive your "
+#~ "image using the key.</p><p>This way all the websites you trust can show "
+#~ "your image next to your posts and your email address remains private.</"
+#~ "p><p>Please <strong>personalize your account</strong> with an image - "
+#~ "just register at <a href='http://gravatar.com'><strong>gravatar.com</"
+#~ "strong></a> (just please be sure to use the same email address that you "
+#~ "used to register with us). Default image that looks like a kitchen tile "
+#~ "is generated automatically.</p>"
+
+#, fuzzy
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "свиђа ми се овај одговор (кликните поново да бисте отказали)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "свиђа ми се овај одговор (кликните поново да бисте отказали)"
+
+#, fuzzy
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "не свиђа ми се овај одговор (кликните поново да бисте отказали)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "не свиђа ми се овај одговор (кликните поново да бисте отказали)"
+
+#~ msgid "add comment"
+#~ msgstr "унесите коментар"
+
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] ""
+#~ "смотреть еще <span class=\"hidden\">%(counter)s</span><strong>один</"
+#~ "strong> комментарий"
+#~ msgstr[1] "смотреть еще <strong>%(counter)s</strong> комментария"
+#~ msgstr[2] "смотреть еще <strong>%(counter)s</strong> комментариев"
+
+#~ msgid "posts per page"
+#~ msgstr "постова по страни"
+
+#~ msgid "Change tags"
+#~ msgstr "Промените ознаке"
+
+#~ msgid "reputation"
+#~ msgstr "карма"
+
+#~ msgid "oldest answers"
+#~ msgstr "стара"
+
+#~ msgid "newest answers"
+#~ msgstr "нова"
+
+#~ msgid "popular answers"
+#~ msgstr "популарна"
+
+#~ 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)!"
+
+#~ 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)! "
+
+#~ 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!"
+
+#, fuzzy
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Login/Signup to Post"
+
+#~ msgid "Answer the question"
+#~ msgstr "Одговорите на питање"
+
+#~ msgid "question asked"
+#~ msgstr "Питано"
+
+#~ msgid "question was seen"
+#~ msgstr "Прегледано"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Notify me</strong> weekly when there are any new answers or "
+#~ "updates"
+
+#~ 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)"
+
+#~ 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."
+
+#~ msgid "Stop sending email"
+#~ msgstr "Stop Email"
+
+#~ msgid "user website"
+#~ msgstr "корисников веб сајт"
+
+#, fuzzy
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "<span class=\"count\">1</span> Ответ"
+#~ msgstr[1] ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "<span class=\"count\">%(counter)s</span> Ответов"
+#~ msgstr[2] ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "<span class=\"count\">%(counter)s</span> Ответа"
+
+#~ msgid "reputation history"
+#~ msgstr "karma history"
+
+#~ msgid "recent activity"
+#~ msgstr "недавне активности"
+
+#~ msgid "casted votes"
+#~ msgstr "votes"
+
+#~ msgid "answer tips"
+#~ msgstr "Савети"
+
+#, fuzzy
+#~ msgid "please try to provide details"
+#~ msgstr "provide enough details"
+
+#~ msgid "ask a question"
+#~ msgstr "поставите питање"
+
+#~ 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. "
+
+#, fuzzy
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Login/Signup to Post"
+
+#~ msgid "question tips"
+#~ msgstr "Савети"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "ask a question interesting to this community"
+
+#~ msgid "logout"
+#~ msgstr "одјава"
+
+#~ msgid "login"
+#~ msgstr "пријава"
+
+#~ msgid "no items in counter"
+#~ msgstr "без"
+
+#~ msgid "your email address"
+#~ msgstr "Your email <i>(never shared)</i>"
+
+#~ msgid "choose password"
+#~ msgstr "Шифра"
+
+#~ msgid "retype password"
+#~ msgstr "Шифра <i>(поново откуцајте)</i>"
+
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d %(badge_level)s медаль"
+#~ msgstr[1] "%(badge_count)d %(badge_level)s медали"
+#~ msgstr[2] "%(badge_count)d %(badge_level)s медалей"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "корисникова карма"
+
+#, fuzzy
+#~ msgid "Please log in to ask questions"
+#~ 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."
+
#, fuzzy
#~ msgid "question content must be > 10 characters"
#~ msgstr ""
@@ -7544,14 +8199,6 @@ msgstr "Извините, у нас определённые техническ
#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
#~ "Теги вопроса"
-#, fuzzy
-#~ msgid "questions"
-#~ msgstr ""
-#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#~ "питања\n"
-#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#~ "вопросы"
-
#~ msgid "search"
#~ msgstr "поиск"
@@ -7564,14 +8211,6 @@ msgstr "Извините, у нас определённые техническ
#~ "В:"
#, fuzzy
-#~ msgid "Sort by:"
-#~ msgstr ""
-#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#~ "Сортирај:\n"
-#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#~ "Упорядочить по:"
-
-#, fuzzy
#~ msgid "Email (not shared with anyone):"
#~ msgstr ""
#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
@@ -8698,16 +9337,6 @@ msgstr "Извините, у нас определённые техническ
#~ msgid "Question: \"%(title)s\""
#~ msgstr "Вопрос: \"%(title)s\""
-#, fuzzy
-#~ msgid ""
-#~ "If you believe that this message was sent in mistake - \n"
-#~ "no further action is needed. Just ignore this email, we apologize\n"
-#~ "for any inconvenience."
-#~ msgstr ""
-#~ "Если вы считаете, что сообщение было отправлено по ошибке - никаких "
-#~ "дальнейших действий не требуется. Просто проигнорируйте это письмо, мы "
-#~ "приносим свои извинения за причиненные неудобства."
-
#~ msgid ""
#~ "The question has been closed for the following reason \"%(close_reason)s"
#~ "\" by"
@@ -8863,9 +9492,6 @@ msgstr "Извините, у нас определённые техническ
#~ msgid "unpopular"
#~ msgstr "непопулярный"
-#~ msgid "Posted 10 comments"
-#~ msgstr "Разместил 10 комментариев"
-
#~ msgid "how to validate email title"
#~ msgstr "как проверить заголовок электронного сообщения"
diff --git a/askbot/locale/sr/LC_MESSAGES/djangojs.po b/askbot/locale/sr/LC_MESSAGES/djangojs.po
index a6c3796b..fe621694 100644
--- a/askbot/locale/sr/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/sr/LC_MESSAGES/djangojs.po
@@ -4,9 +4,9 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:50-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,146 +75,76 @@ msgstr ""
msgid "loading..."
msgstr ""
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr ""
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr ""
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr ""
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr ""
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr ""
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+msgid "please confirm removal of offensive flag"
+msgstr ""
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr ""
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr ""
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr ""
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr ""
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr ""
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr ""
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr ""
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr ""
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr ""
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -234,114 +164,113 @@ msgstr[1] ""
"#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
msgstr[2] "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] ""
+"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+"#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
+msgstr[1] ""
+"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+"#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
+msgstr[2] "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
diff --git a/askbot/locale/tr/LC_MESSAGES/django.po b/askbot/locale/tr/LC_MESSAGES/django.po
index bcb581dc..ecb21b56 100644
--- a/askbot/locale/tr/LC_MESSAGES/django.po
+++ b/askbot/locale/tr/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:54-0500\n"
"PO-Revision-Date: 2012-02-17 22:35+0200\n"
"Last-Translator: Hakan <hatalar205linux@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,15 +22,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "Üzgünüz, anonim ziyaretçiler bu özelliği kullanamazlar"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr "-"
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr "Bireysel soru akışı"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "en son sorulanlar"
@@ -58,24 +58,33 @@ msgstr "başlık"
msgid "please enter a descriptive title for your question"
msgstr "Sorunuz için açıklayıcı bir başlık girin"
-#: forms.py:111
+#: forms.py:113
#, fuzzy, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "Başlık en az %d karakter olmalı"
msgstr[1] ""
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "içerik"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "etiketler"
-#: forms.py:168
+#: forms.py:188
#, fuzzy, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -88,11 +97,11 @@ msgstr[0] ""
"%(max_tags)d etiket kullanılabilir."
msgstr[1] ""
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr "etiket yazmalısınız"
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
@@ -100,27 +109,27 @@ msgstr[0] "En fazla %(tag_count)d etiket kullanabilirsiniz"
msgstr[1] "En fazla %(tag_count)d etiket kullanabilirsiniz"
# 100%
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "Aşağıdaki etiketlerden en az bir tanesi gerekli: %(tags)s"
-#: forms.py:227
+#: forms.py:249
#, 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] "Her etiket en fazla %(max_chars)d karakter içerebilir"
msgstr[1] "Her etiket en fazla %(max_chars)d karakter içerebilir"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "bu-yazıları-etiket-olarak-kullan"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr "Topluluk wikisi (karma ödüllendirilmez ve başkaları düzenleyebilir)"
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
@@ -128,11 +137,11 @@ msgstr ""
"Eğer wiki seçeneğini seçerseniz, soru ve cevaplardan puan verilip "
"alınamayacak ve yazarın ismi gizli kalacaktır."
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "güncelleme özeti:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -140,42 +149,42 @@ msgstr ""
"Yaptığınız düzeltmenin özetini giriniz. (sabit yazım, dilbilgisi, gelişmiş "
"stil gibi, bu alan isteğe bağlı)"
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "Eklenecek ya da çıkartılacak nokta sayısını girin"
# 100%
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "onaylanmış"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "izlenmiş"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "durduruldu"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "engellenmiş"
-#: forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr "yönetici"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "yönetici"
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr "Durumu değiştir"
# #-#-#-#-# django.po (0.7) #-#-#-#-#
# 100%
-#: forms.py:431
+#: forms.py:453
#, fuzzy
msgid "which one?"
msgstr ""
@@ -183,25 +192,25 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"hangisi?"
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr "kendi durumunuzu değiştiremezsiniz"
# 100%
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "Başka bir kullanıcı moderator yapılamıyor"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "Başka bir yöneticinin durumu değiştirilemez"
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "Durumu yönetici olarak değiştiremezsiniz"
# %90
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
@@ -210,45 +219,50 @@ msgstr ""
"%(username)s kullanıcısının durumunu değiştirmek istiyorsanız lütfen anlamlı "
"bir seçim yapınız."
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "Satır seç"
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "İleti metni"
-#: forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr "Adınız (seçimsel):"
-#: forms.py:580
+#: forms.py:531
msgid "Email:"
msgstr "E-posta"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "Mesajınız:"
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "E-posta adresimi vermek istemiyorum veya cevap almak istemiyorum:"
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr "Lütfen \"epostal adresimi vermek istemiyorum\" bölümünü işaretleyiniz."
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr "isimsiz olarak sor"
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
"Bu soruyu sorarken adınızın gizli kalmasını istiyorsanız işaretleyiniz."
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
# %90
-#: forms.py:810
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
@@ -256,11 +270,11 @@ msgstr ""
"Bu soruyu isimsiz olarak sordunuz, eğer adınızın görünmesini istiyorsanız "
"lütfen bu kutuyu işaretleniz."
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr "kimliği göster"
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
@@ -268,7 +282,7 @@ msgstr ""
"Maalesef, sadece anonim sorunun sahibi kendi kimliğini açık edebilir, lütfen "
"onayı kaldırınız."
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -278,15 +292,11 @@ msgstr ""
"Lütfen \"kimliği göster\" kutusunu kontrol edin veya sayfayı yeniden "
"yükleyin ve soruyu tekrar düzenleyin."
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr "bu e-posta gravatar bağlantılı olacaktır"
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "Gerçek isim"
-#: forms.py:937
+#: forms.py:895
#, fuzzy
msgid "Website"
msgstr ""
@@ -295,137 +305,161 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"İnternet sitesi"
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr "Şehir"
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr "Ülkeyi göster"
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "Doğum tarihi"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
"Gizli alan, yaş hesaplamak için kullanılır. YYYY-AA-GG şeklinde giriniz."
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "Profil"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "Görünen isim"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "Bu e-mail sitemizde zaten kayıtlı, lütfen başka bir tane deneyin"
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "E-mail etiketi için filtre seç"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "Tarafımdan sorulan"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "Tarafımdan cevaplanan"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "Tek tek seçilmiş"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "Tüm forum (etiket ile filtrelenmiş)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "Benim hakkımdaki gönderiler"
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "lütfen yukarıdaki seçeneklerden birini seçin "
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "tamam, bir deneyelim!"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "toplu e-mail istemiyorum, teşekkürler"
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "lütfen yukarıdaki seçeneklerden birini seçin "
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
-#: urls.py:52
+#: urls.py:41
msgid "about/"
msgstr "hakkimizda/"
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr "sss/"
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "gizlilik/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "cevaplar/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "duzenle/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "duzeltmeler/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+msgid "questions"
+msgstr "sorular"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "sorular/"
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "sor/"
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr "tekraretiketle/"
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "kapat/"
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "yenidenac/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "cevap/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr "oy/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr "programciklar/"
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "etiketler/"
# #-#-#-#-# django.po (0.7) #-#-#-#-#
# 78%
-#: urls.py:196
+#: urls.py:201
#, fuzzy
msgid "subscribe-for-tags/"
msgstr ""
@@ -433,48 +467,43 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"etiketleri kullan"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "kullanicilar/"
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr "abonelikler/"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "rozetler/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "mesajlar/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "okundu-yap/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "yukle/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "geribildirim/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "soru/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "hesap/"
@@ -609,145 +638,150 @@ msgid ""
msgstr ""
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "E-posta ve e-posta uyarı ayarları"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "Bir e-posta bildirisindeki maksimum haber sayısı"
-#: conf/email.py:48
+#: conf/email.py:57
#, fuzzy
msgid "Default notification frequency all questions"
msgstr "Varsayılan haber uyarı sıklığı"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
#, fuzzy
msgid "Default notification frequency questions asked by the user"
msgstr "Varsayılan haber uyarı sıklığı"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
#, fuzzy
msgid "Default notification frequency questions answered by the user"
msgstr "Varsayılan haber uyarı sıklığı"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
#, fuzzy
msgid "Send periodic reminders about unanswered questions"
msgstr "Harika! Cevapsız bir soru bile kalmamış..."
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
#, fuzzy
msgid "Days before starting to send reminders about unanswered questions"
msgstr "Harika! Cevapsız bir soru bile kalmamış..."
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
#, fuzzy
msgid "Send periodic reminders to accept the best answer"
msgstr "Harika! Cevapsız bir soru bile kalmamış..."
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
#, fuzzy
msgid "Days before starting to send reminders to accept an answer"
msgstr "Harika! Cevapsız bir soru bile kalmamış..."
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr "Gönderiye izin vermeden önce e-posta doğrulaması iste"
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
"Aktif e-posta doğrulaması, kullanıcıya bir onay kodu gönderilerek yapılır"
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr "Bir e-posta adresi ile tek kullanıcıya izin ver"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr "Anonim kullanıcı için geçersiz e-posta adresi"
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr "Bu ayarlar e-postasız kullanıcıların gravatarı içindir"
-#: conf/email.py:247
+#: conf/email.py:256
#, fuzzy
msgid "Allow posting questions by email"
msgstr "soru bilgisi göndermek için giriş yapın"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
@@ -755,16 +789,35 @@ msgstr ""
"Bu ayarı aktif etmeden önce - lütfen settings.py dosyasındaki IMAP "
"ayarlarını doldurunuz."
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "soru bilgisi göndermek için giriş yapın"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -800,15 +853,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr "Recaptcha genel anahtarı"
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr "Recaptcha gizli anahtarı"
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, fuzzy, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -819,11 +872,11 @@ msgstr ""
"servistir. Anahtarını <a href=\"http://recaptcha.net\">recaptcha.net</a> "
"adresinden temin edebilirsiniz"
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr "Facebook genel anahtarı"
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, fuzzy, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -835,71 +888,54 @@ msgstr ""
"developers/createapp.php\">facebook create app</a> adresinden temin "
"edebilirsiniz"
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Facbook gizli anahtarı"
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr "Twitter kullanıcı anahtarı"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr "LDAP servis sağlayıcı ismi"
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr "LDAP servisi için URL"
-
-#: conf/external_keys.py:193
-#, fuzzy
-msgid "Explain how to change LDAP password"
-msgstr "Hesabınız: Şifremi değiştir"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "Flatpages - hakkında, gizlilik politikası, vb."
@@ -948,11 +984,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr "askbot veri girişi ve görüntüleme ayarları"
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -1024,108 +1062,168 @@ msgstr "etiketin maksimum uzunluğu (karakter sayısı)"
#: conf/forum_data_rules.py:126
#, fuzzy
+msgid "Are tags required?"
+msgstr "etiket yazmalısınız"
+
+#: conf/forum_data_rules.py:135
+#, fuzzy
msgid "Mandatory tags"
msgstr "güncellenmiş etiketler"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
#, fuzzy
msgid "Use wildcard tags"
msgstr "İlgili etiketler"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "soru başına maksimum etiket sayısı"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr "Soru listesinin varsayılan uzunluğu (soru sayısı)"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "\"Cevaplanmamış soru\" ne anlama gelmeli?"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+#, fuzzy
+msgid "LDAP Server USERID field name"
+msgstr "LDAP servis sağlayıcı ismi"
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+#, fuzzy
+msgid "LDAP Server EMAIL field name"
+msgstr "LDAP servis sağlayıcı ismi"
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Etiketleri"
+
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "Kullanıcı profili"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1200,16 +1298,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1376,6 +1474,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
#, fuzzy
msgid "Karma loss and gain rules"
@@ -1580,29 +1682,29 @@ msgstr "Arama motorları için site tanımı"
msgid "Short name for your Q&A forum"
msgstr "Soru/Cevap forumunun kısa adı"
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr "Soru/Cevap forumu için ana URL (http veya https ile başlamalıdır)"
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
#, fuzzy
msgid "Check to enable greeting for anonymous user"
msgstr "Anonim kullanıcı için geçersiz e-posta adresi"
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
#, fuzzy
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr "Anonim kullanıcıya gösterilen karşılama mesajı"
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "Geri bildirim adresi"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr "Boş bırakıldığında basit bir iç geribesleme formu kullanılacak"
@@ -1728,21 +1830,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1750,40 +1852,40 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr "Tema seç"
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1795,11 +1897,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1808,21 +1910,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1831,21 +1933,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1854,19 +1956,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1877,19 +1979,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr "Tema medya dosyaları versiyon numarası"
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1984,40 +2086,68 @@ msgstr "Diğer Hizmetler"
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
#, fuzzy
msgid "User settings"
msgstr "Kullanıcı idare ayarları"
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr "Kullanıcı adının değiştirilmesine izin ver"
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "Bir e-posta adresi ile tek kullanıcıya izin ver"
+
+#: conf/user_settings.py:41
#, fuzzy
msgid "Allow account recovery by email"
msgstr "Bir e-posta adresi ile tek kullanıcıya izin ver"
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr "Görünen isim için en az kelime uzunluğu"
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+#, fuzzy
+msgid "Default avatar for users"
+msgstr "Varsayılan değer: %s"
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
#, fuzzy
msgid "Name for the Anonymous user"
msgstr "Anonim kullanıcı için geçersiz e-posta adresi"
@@ -2131,257 +2261,256 @@ msgstr "spam ya da reklam"
msgid "too localized"
msgstr "çok dar kapsamlı"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "en yeni"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "en eski"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "aktif"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "hareketsiz"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "sıcak"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "soğuk"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "en çok oy alan"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "En az oy"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "ilgi"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "tümü"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "cevapsız"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "favori"
-#: const/__init__.py:64
+#: const/__init__.py:70
#, fuzzy
msgid "list"
msgstr "Etiket listesi"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "Cevapsız soru"
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "Kabul edilmiş cevabı olmayan soru"
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr "bir soru sordu"
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr "bir soru cevapladı"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "soruya yorum yazıldı"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "cevaba yorum yazıldı"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "soru düzeltilmiş"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "cevap düzeltilmiş"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "alınan ödül"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "en iyi cevap olarak işaretlenmiş"
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "beğendim"
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "beğenmedim"
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "oy iptal"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "silinmiş bir soru"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "silinmiş cevap"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "saldırgan olarak işaretlenmiş"
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "güncellenmiş etiketler"
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "favori olarak seçilmiş"
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "tamamlanmış kullanıcı profili"
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "kullanıcıya e-mail güncelleme gönder"
-#: const/__init__.py:142
+#: const/__init__.py:145
#, fuzzy
msgid "reminder about unanswered questions sent"
msgstr "cevapsız sorular gör"
-#: const/__init__.py:146
+#: const/__init__.py:149
#, fuzzy
msgid "reminder about accepting the best answer sent"
msgstr "En iyi cevap için kazanılan puan"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "gönderide belirtilmiş"
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "cevaplanmış_soru"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "yorumlanmış soru"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr "yorumlanmış soru"
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr "kabul edilmiş soru"
+#, fuzzy
+msgid "answered question"
+msgstr "bir soru cevapladı"
-#: const/__init__.py:206
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "cevap düzeltilmiş"
+
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[kapatıldı]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[silindi]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "ilk versiyon"
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "yeniden etiketlendi"
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr ""
-#: const/__init__.py:218
+#: const/__init__.py:221
#, fuzzy
msgid "exclude ignored"
msgstr "dışlanmış etiketleri dikkate al"
-#: const/__init__.py:219
+#: const/__init__.py:222
#, fuzzy
msgid "only selected"
msgstr "Tek tek seçilmiş"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "anında"
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "günlük"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "haftalık"
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "e-mail yok"
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
#, fuzzy
msgid "mystery-man"
msgstr "dün"
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
#, fuzzy
msgid "wavatar"
msgstr "Gravatar nedir?"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "altın"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "gümüş"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "bronz"
# #-#-#-#-# django.po (0.7) #-#-#-#-#
# 75%
-#: const/__init__.py:298
+#: const/__init__.py:301
#, fuzzy
msgid "None"
msgstr ""
@@ -2392,7 +2521,7 @@ msgstr ""
# #-#-#-#-# django.po (0.7) #-#-#-#-#
# 75%
# 100%
-#: const/__init__.py:299
+#: const/__init__.py:302
#, fuzzy
msgid "Gravatar"
msgstr ""
@@ -2400,86 +2529,100 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"Gravatar nedir?"
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr ""
-#: const/message_keys.py:15
+#: const/message_keys.py:21
#, fuzzy
msgid "most relevant questions"
msgstr "lütfen ilgili bir soru sorunuz"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
#, fuzzy
msgid "click to see most relevant questions"
msgstr "en çok oylanan soruları gör"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
#, fuzzy
msgid "by relevance"
msgstr "ilgi"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "eski soruları görmek için tıklayın"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
#, fuzzy
msgid "by date"
msgstr "Güncelleme"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "yeni soruları görmek için tıklayın"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "güncel olmayan soruları görmek için tıklayın"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
#, fuzzy
msgid "by activity"
msgstr "aktif"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "en güncel soruları görmek için tıklayın"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
#, fuzzy
msgid "click to see the least answered questions"
msgstr "eski soruları görmek için tıklayın"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
#, fuzzy
msgid "by answers"
msgstr "cevaplar"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
#, fuzzy
msgid "click to see the most answered questions"
msgstr "en çok oylanan soruları gör"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "en az oylanan soruları gör"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
#, fuzzy
msgid "by votes"
msgstr "oy"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "en çok oylanan soruları gör"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr "i-name girişleri desteklenmiyor"
@@ -2531,11 +2674,12 @@ msgid "Your user name (<i>required</i>)"
msgstr "Kullanıcı adınız <i>(gerekli)</i>"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "Hatalı kullanıcı adı."
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "Üzgünüm, bu isimle kayıtlı bir kullanıcı yoktur"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "giriş/"
@@ -2575,7 +2719,7 @@ msgid "%(site)s user name and password"
msgstr "Lütfen kullanıcı adınızı ve şifrenizi girin"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2665,78 +2809,78 @@ msgstr "Lütfen kullanıcı adınızı ve şifrenizi girin"
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID %(openid_url)s geçersiz"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
#, fuzzy
msgid "Your new password saved"
msgstr "Şifreniz değiştirildi"
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
#, fuzzy
msgid "Oops, sorry - there was some error - please try again"
msgstr "Üzgünüm, şifreler uyuşmuyor lütfen tekrar deneyin."
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr "E-posta adresiniz onaylanmalı, bkz.%(details_url)s "
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, fuzzy, python-format
msgid "Recover your %(site)s account"
msgstr "Hesabınıza yeni bir şifre verin."
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2744,28 +2888,28 @@ msgstr ""
msgid "Site"
msgstr "Site"
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "Temel Ayarlar"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "Varsayılan değer: \"\""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "Varsayılan değer:"
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "Varsayılan değer: %s"
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, fuzzy, python-format
msgid "Allowed image file types are %(types)s"
msgstr "izin verilen dosya türleri '%(file_types)s'"
@@ -2781,7 +2925,7 @@ msgstr "Belgelendirme"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "Şifre değiştir"
@@ -2841,131 +2985,55 @@ msgstr "Hepsini kapat"
msgid "Congratulations, you are now an Administrator"
msgstr "Tebrikler, artık sitemizde yönetici oldunuz..."
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
#, fuzzy
msgid "Please accept the best answer for this question:"
msgstr "Bu soruya ilk cevabı sen yaz!"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
#, fuzzy
msgid "Please accept the best answer for these questions:"
msgstr "eski soruları görmek için tıklayın"
-#: management/commands/send_email_alerts.py:411
-#, fuzzy, python-format
+#: management/commands/send_email_alerts.py:414
+#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
msgstr[1] ""
-#: management/commands/send_email_alerts.py:421
-#, fuzzy, 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"
+#: management/commands/send_email_alerts.py:425
+#, python-format
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
-"<p>Dear %(name)s,</p></p>The following question has been updated on the Q&A "
-"forum:</p>"
msgstr[1] ""
-"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
-"the Q&A forum:</p>"
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "yeni soru"
-#: 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 ""
-"Lütfen askbot'u ziyaret edin ve yeniliklerden haberdar olun! İnsanlara "
-"burada olani biteni anlatın. Belki buradaki soruları cevaplayabilecek veya "
-"soru sorarak askbot'tan faydalanabilecek birilerini tanıyorsunuzdur."
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-"Seçili sorulara aboneliğiniz 'günlük' olarak görünüyor. Eğer birden fazla e-"
-"posta alıyorsanız, lütfen bunu bize bildirin."
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-"Seçili sorulara aboneliğiniz 'haftalık' olarak görünüyor. Eğer birden fazla "
-"e-posta alıyorsanız, lütfen bunu bize bildirin."
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr "Ölen linkleri önceden görme şansın olabilir. "
-
-#: management/commands/send_email_alerts.py:490
-#, fuzzy, python-format
+#: management/commands/send_email_alerts.py:474
+#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
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>"
-#: management/commands/send_unanswered_question_reminders.py:56
-#, fuzzy, python-format
+#: management/commands/send_unanswered_question_reminders.py:60
+#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
msgstr[0] ""
@@ -2976,86 +3044,78 @@ msgstr[1] ""
msgid "Please log in to use %s"
msgstr "Kullanıcı girişi"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:334
+#: models/__init__.py:337
#, fuzzy, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr "Kendi soruna verdiğin ilk kabul edilmiş cevap"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "kendi yazılarınıza oy veremezsiniz"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr "beğeninizi göstermek için en az %(points)s puan toplamalısınız "
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr "beğenmediğinizi göstermek için en az %(points)s puan toplamalısınız"
-#: models/__init__.py:431
+#: models/__init__.py:430
#, fuzzy
msgid "Sorry, blocked users cannot upload files"
msgstr "Engellenen kullanıcılar ileti yapamaz"
-#: models/__init__.py:432
+#: models/__init__.py:431
#, fuzzy
msgid "Sorry, suspended users cannot upload files"
msgstr "Dondurulan kullanıcılar ileti yapamaz"
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "resim göndermek için en az %(min_rep)s puan toplamalısınız"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr "Engellenen kullanıcılar ileti yapamaz"
-
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr "Dondurulan kullanıcılar ileti yapamaz"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
+msgstr ""
-#: models/__init__.py:481
-#, fuzzy, python-format
+#: models/__init__.py:482
+#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
"minute from posting"
@@ -3065,57 +3125,56 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:510
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:649
-#, fuzzy
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3125,275 +3184,275 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-#: models/__init__.py:764
-#, fuzzy
-msgid "blocked users cannot flag posts"
-msgstr "Engellenen kullanıcılar ileti yapamaz"
-
-#: models/__init__.py:766
-#, fuzzy
-msgid "suspended users cannot flag posts"
-msgstr "Dondurulan kullanıcılar ileti yapamaz"
+#: models/__init__.py:783
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr ""
-#: models/__init__.py:768
+#: models/__init__.py:794
#, python-format
-msgid "need > %(min_rep)s points to flag spam"
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
msgstr ""
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
+msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr "Engellenen kullanıcılar ileti yapamaz"
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
-msgstr "Dondurulan kullanıcılar ileti yapamaz"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
-#, fuzzy, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+#: models/__init__.py:843
+#, python-format
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:828
+#: models/__init__.py:862
#, fuzzy
msgid "you don't have the permission to remove all flags"
msgstr "Değerleri değiştirmek için yetkin yok."
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "verilen bir oyu iptal edemezsiniz"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "%(date)s tarihinde"
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, fuzzy, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "%(hr)d saat önce"
msgstr[1] "%(hr)d saat önce"
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, fuzzy, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "%(min)d dakika önce"
msgstr[1] "%(min)d dakika önce"
-#: models/__init__.py:1404
-#, fuzzy, python-format
+#: models/__init__.py:1478
+#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
#, fuzzy
msgid "Anonymous"
msgstr "anonim"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
#, fuzzy
msgid "Site Adminstrator"
msgstr "Saygılarımızla, <BR> Site yönetimi"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
#, fuzzy
msgid "Suspended User"
msgstr "Gönderen"
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
#, fuzzy
msgid "Registered User"
msgstr "Kayıtlı kullanıcı"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, fuzzy, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "karmanız %(reputation)s"
-#: models/__init__.py:1799
-#, fuzzy, python-format
+#: models/__init__.py:1880
+#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
msgstr[1] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, fuzzy, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] "gümüş rozetin açıklaması"
msgstr[1] "gümüş rozetin açıklaması"
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, fuzzy, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "bronze rozetin açıklaması"
msgstr[1] "bronze rozetin açıklaması"
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "Etiketleri"
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3659,164 +3718,143 @@ msgstr "Taksonomist"
msgid "Created a tag used by %(num)s questions"
msgstr "50 soruda kullanılmış etiket yarattı"
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "Uzman"
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "Bir etikette çok etkin"
-#: models/content.py:549
+#: models/post.py:1071
#, fuzzy
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "bu soru favori olarak seçildi"
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
#, fuzzy
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "bu soru favori olarak seçildi"
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr ""
-#: models/question.py:66
+#: models/question.py:57
#, fuzzy
msgid "\" and more"
msgstr "Daha fazla bilgi"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s soruyu düzenledi"
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr "%(people)s adlı üyemiz %(new_answer_count)s yeni cevap yolladı"
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s bir soruyu yorumladı"
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr ""
-"suggest forum/models/question.py:508\n"
-" \n"
-"%(people)s cevaba yorum yazdı"
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s bir cevabı yorumladı"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "E-mail adresini doğrula"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr ""
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "ilginç"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "yoksay"
-#: models/user.py:264
+#: models/user.py:266
#, fuzzy
msgid "Entire forum"
msgstr "Bütün askbot"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "Sorduğum sorular"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "Cevapladığım sorular"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "Seçtiğim sorular"
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr ""
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "Anında"
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "Günlük"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "Haftalık"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "E-posta yok"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
#, fuzzy
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Lütfen kullanıcı adınızı ve şifrenizi girin"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
#, fuzzy
msgid "(or select another login method above)"
msgstr "Lütfen yukarıdaki seçeneklerden birini seçin"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
#, fuzzy
msgid "Sign in"
msgstr "giriş/"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "E-mai değiştir"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3825,35 +3863,38 @@ msgstr "E-mail adresinizi kaydedin"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
-msgstr "bilgileri %(email)s değiştir"
-
-#: skins/common/templates/authopenid/changeemail.html:17
-#, fuzzy, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
msgstr ""
+
+#: skins/common/templates/authopenid/changeemail.html:19
+#, python-format
+msgid ""
"<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.buraya bakarak neden E-mail adresinin gerekli olduğunu görebilirsiniz: "
-"%(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
-msgstr "Yeni e-posta adresiniz"
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
-msgstr "E-mail adresiniz"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
+msgstr ""
+
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "E-mail adresini kaydet"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3861,173 +3902,113 @@ msgstr "E-mail adresini kaydet"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "Iptal"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "E-mail adresini doğrula"
-#: skins/common/templates/authopenid/changeemail.html:48
-#, fuzzy, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+#: skins/common/templates/authopenid/changeemail.html:61
+#, python-format
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
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>. %(email)s "
-"adresini doğrulayın ya da %(change_email_url)s adresine gidin."
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "E-mail değişmedi"
-#: skins/common/templates/authopenid/changeemail.html:55
-#, fuzzy, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#: skins/common/templates/authopenid/changeemail.html:73
+#, python-format
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
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.eski "
-"%(email)s saklansın diyorsanız, %(change_email_url)s adresi size yardımcı "
-"olacaktır."
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "E-mail değiştirildi"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
-msgstr "Şimdiki %(email)s bunun için kullanılabilir"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "E-mail doğrulandı"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
-msgstr "E-posta adresinizi onayladığınız için teşekkürler"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "e-posta kodu gönderilmedi"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "E-mail adresini doğrula"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
msgstr ""
-"E-mail şifresi %(email)s yollanamadı. E-mail değiştirmek için: "
-"%(change_link)s adresine bakın."
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "Kayıt"
-#: skins/common/templates/authopenid/complete.html:27
-#, fuzzy, 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>Yeni "
-"%(provider)s hesabı kayıt bilgisi için lütfen bakınız: %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, fuzzy, 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>"
-"%(username)s kullanıcı adı, %(provider)s için başka birisi tarafından "
-"alınmıştır. Başka bir isim deneyin. Lütfen okuyun: %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:34
-#, fuzzy, 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>başka bir "
-"%(provider)s hesabı kaydetmek için bakınız: %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, fuzzy, 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>Yeni Facebook "
-"hesabı ile bağlanma kaydı bilgisi: %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr ""
-"Bu kullanıcı adı sitemizde zaten kayıtlı. Lütfen başka bir tane deneyin."
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "Görünen isim etiketi"
-
-#: skins/common/templates/authopenid/complete.html:66
+#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
-msgid "Email address label"
-msgstr ""
-"<strong>Email Address</strong> (<i>will <strong>not</strong> be shared with "
-"anyone, must be valid</i>)"
+msgid "User registration"
+msgstr "Kayıt"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-#, fuzzy
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
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/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "Lütfen yukarıdaki seçeneklerden birini seçin"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr ""
-"Etiket filtreleme aracı sağ panelde, oturum açınca bir kez görünecektir."
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "hesap oluştur"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "Kaydol"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -4051,9 +4032,10 @@ msgstr "Lütfen buradan giriş yapın:"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr "Saygılarımızla, <BR> Site yönetimi"
#: skins/common/templates/authopenid/email_validation.txt:1
@@ -4069,9 +4051,10 @@ msgid "Following the link above will help us verify your email address."
msgstr "Yukarıdaki bağlantı, E-mail adresinizi doğrulamada yardımcı olacaktır."
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
"Eğer bu mesajın size yanlışlıkla gönderildiğini düşünüyorsanız, hiçbir şey "
@@ -4123,9 +4106,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -4159,137 +4142,98 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
+#: skins/common/templates/authopenid/signin.html:89
#, fuzzy
-msgid "Please enter your <span>user name and password</span>, then sign in"
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Lütfen kullanıcı adınızı ve şifrenizi girin"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "Lütfen buradan giriş yapın:"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
#, fuzzy
msgid "Login or email"
msgstr "e-mail yok"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "Şifre"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "Giriş"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "Yeni şifre ayarla"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
#, fuzzy
msgid "Please, retype"
msgstr "lütfen şifrenizi yeniden yazın"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "son görülme"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "sil"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "Hesap silindi."
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "Hala aklınıza takılan bir soru mu var?"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
#, fuzzy
msgid "recover your account via email"
msgstr "Hesabınıza yeni bir şifre verin."
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
#, fuzzy
msgid "Recover your account via email"
msgstr "Hesabınıza yeni bir şifre verin."
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr "Neden OpenID kullanıyoruz?"
-
-#: skins/common/templates/authopenid/signin.html:219
-#, fuzzy
-msgid "with openid it is easier"
-msgstr "With the OpenID you don't need to create new username and password."
-
-#: skins/common/templates/authopenid/signin.html:222
-#, fuzzy
-msgid "reuse openid"
-msgstr "You can safely re-use the same login for all OpenID-enabled websites."
-
-#: skins/common/templates/authopenid/signin.html:225
-#, fuzzy
-msgid "openid is widely adopted"
-msgstr ""
-"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-"
-"enabled."
-
-#: skins/common/templates/authopenid/signin.html:228
-#, fuzzy
-msgid "openid is supported open standard"
-msgstr ""
-"OpenID is based on an open standard, supported by many organizations.OpenID "
-"açık kaynak standartları ile desteklenmektedir"
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "Daha fazla bilgi"
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr "OpenID hesabı açın"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "Kaydol"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
#, fuzzy
msgid "Please register by clicking on any of the icons below"
@@ -4305,16 +4249,19 @@ msgid "Create login name and password"
msgstr "Kullanıcı adı ve şifre oluştur"
#: skins/common/templates/authopenid/signup_with_password.html:26
-#, fuzzy
-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 "
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
"your login details with anyone and having to remember yet another password."
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
@@ -4323,15 +4270,11 @@ msgstr ""
"oluşturucular, sitemize böyle kayıt olup, gerçek olmayan içerikler "
"eklemektedir."
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "Hesap oluştur"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "veya"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "OpenID girişine dön"
@@ -4395,70 +4338,71 @@ msgstr ""
msgid "Delete These"
msgstr "silinmiş cevap"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "kalıcı bağlantıyı cevapla"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "Cevabı yayınla"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "kalıcı bağlantı"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "değiştir"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "bağlantı"
+
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "silineni geri al"
+
+#: skins/common/templates/question/answer_controls.html:19
+#, fuzzy
+msgid "remove offensive flag"
+msgstr "Uygunsuz olarak işaretlenmiş olanları görüntüle"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
#, fuzzy
-msgid "remove all flags"
+msgid "remove flag"
msgstr "tüm etiketleri gör"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr "şikayet et (spam, reklam, kötü amaçlı yazı vb. içeriyor)"
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "şikayet et"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-#, fuzzy
-msgid "remove flag"
-msgstr "tüm etiketleri gör"
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "silineni geri al"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "değiştir"
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Cevabı yayınla"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "bu cevap doğru olarak seçildi"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
#, fuzzy
msgid "mark this answer as correct (click again to undo)"
msgstr "bu cevabı favori olarak işaretle (geri almak için tıklayın)"
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, fuzzy, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "bu soruyu yazan kişi, bu cevabı doğru olarak seçti"
-
#: skins/common/templates/question/closed_question_info.html:2
#, fuzzy, python-format
msgid ""
@@ -4472,61 +4416,69 @@ msgid "close date %(closed_at)s"
msgstr "kapatılma tarihi %(closed_at)s"
#: skins/common/templates/question/question_controls.html:6
-#, fuzzy
-msgid "retag"
-msgstr "yeniden etiketlendi"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "yeniden aç"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "kapat"
-#: skins/common/templates/widgets/edit_post.html:21
+#: skins/common/templates/question/question_controls.html:35
#, fuzzy
-msgid "one of these is required"
+msgid "retag"
+msgstr "yeniden etiketlendi"
+
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
msgstr "bu alanın doldurulması gereklidir"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "etiketler"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(gerekli)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "Toggle gerçek zamanlı Markdown editörü önizleme"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "önizlemeyi gizle"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "İlgili etiketler"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr "İlginç etiketler"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
#, fuzzy
msgid "add"
msgstr "Ekle"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "Yoksayılan etiketler"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
#, fuzzy
msgid "Display tag filter"
msgstr "E-mail etiketi için filtre seç"
@@ -4579,7 +4531,7 @@ msgid "back to previous page"
msgstr "önceki sayfaya geri dön"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr "tüm soruları gör"
@@ -4610,11 +4562,6 @@ msgstr "son soruları gör"
msgid "see tags"
msgstr "etiketleri gör"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4644,17 +4591,20 @@ msgstr "Değişikliği kaydet"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "önizlemeyi göster"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "Soru sor"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "Soruyu yayınla"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, fuzzy, python-format
msgid "%(name)s"
msgstr "%(date)s tarihinde"
@@ -4669,8 +4619,8 @@ msgid "Badge \"%(name)s\""
msgstr "%(date)s tarihinde"
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, fuzzy, python-format
msgid "%(description)s"
msgstr "e-mail abonelikleri"
@@ -4681,11 +4631,7 @@ msgid_plural "users received this badge:"
msgstr[0] "kullanıcı bu rozeti elde etti:"
msgstr[1] "kullanıcılar bu rozeti elde ettiler:"
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "Madalya özeti"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "Ödüller"
@@ -4699,42 +4645,44 @@ msgstr ""
#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"Below is the list of available badges and number \n"
" of times each type of badge has been awarded. Have ideas about fun "
"badges? Please, give us your <a href='%(feedback_faq_url)s'>feedback</a>"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Site rozetleri"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr "altın rozetin açıklaması"
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
-msgstr "gümüş rozetin açıklaması"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
+msgstr ""
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "bronz madalya: genellikle özel bir onur olarak verilir"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "bronze rozetin açıklaması"
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
msgstr "Soruyu kapat"
@@ -4751,11 +4699,10 @@ msgstr "Nedenleri"
msgid "OK to close"
msgstr "Kapatmak için OK butonuna bas"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4776,15 +4723,17 @@ msgstr ""
"gösterilmektedir."
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Soru sormadan önce, öncelikle sitemizde bir arama yapın. Belki bu soru ve "
"cevabı sitemizde bulunmaktadır."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "Ne tür sorulardan kaçınmalıyım?"
#: skins/default/templates/faq_static.html:11
@@ -4801,13 +4750,11 @@ msgstr "Cevaplarımda nelere dikkat etmeliyim?"
#: skins/default/templates/faq_static.html:14
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
-"bir soru & cevap sitesi olup, asla ve asla bir tartışma ortamı değildir. Bu "
-"nedenle cevaplarınızı, tartışmalardan kaçınacak şekilde, yorum ve karşılıklı "
-"fikir alışverişine dayalı şekilde yazınız."
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4822,25 +4769,26 @@ msgid "This website is moderated by the users."
msgstr "Bu web sitesi, kullanıcıları tarafından yönetilmektedir."
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"İtibar sistemi, kullanıcılarımızın sitedeki yetkilendirme ve yazdıklarının "
"doğruluğu konusunda fikir verir."
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "İtibar sistemi nasıl çalışmaktadır?"
#: skins/default/templates/faq_static.html:21
-#, fuzzy
-msgid "Rep system summary"
-msgstr ""
+msgid ""
"When a question or answer is upvoted, the user who posted them will gain "
-"some points, which are called \"karma points\". These points serve as a "
+"some points, which are called \\\"karma points\\\". These points serve as a "
"rough measure of the community trust to him/her. Various moderation tasks "
"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, fuzzy, python-format
@@ -4869,61 +4817,69 @@ msgstr ""
msgid "upvote"
msgstr "beğendim"
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr "etiketleri kullan"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "yorum ekle"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "beğenmedim"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "Kendi soruna verdiğin ilk kabul edilmiş cevap"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "kendi sorularım açık ve kapalı "
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
#, fuzzy
msgid "retag other's questions"
msgstr "soruları yeniden etiketle"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "sitenin wiki sorularını değiştir"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "herhangi bir cevabı değiştir"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "\"delete any comment"
+msgid "delete any comment"
msgstr "bir yorumu sil"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "Gravatar nedir?"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-#, fuzzy
-msgid "gravatar faq info"
-msgstr "gravatar sss bilgi"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "Kaydolmak için, yeni bir şifre yaratmalı mıyım?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
#, fuzzy
msgid ""
"No, you don't have to. You can login through any service that supports "
@@ -4933,22 +4889,22 @@ msgstr ""
"mesela Facebook, Twitter, Google Mail, Yahoo, AOL, vb aracılığıyla da giriş "
"yapabilirsiniz."
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
#, fuzzy
msgid "\"Login now!\""
msgstr "Şimdi giriş yap!"
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr ""
"Neden başkaları benim sorumu ya da cevabımı düzenleyebiliyor ve "
"değiştirebiliyorlar?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr "İşte bu, sitenin en önemli amaçlarından biridir..."
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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 "
@@ -4958,21 +4914,21 @@ msgstr ""
"kullanıcıları tarafından değiştirilip düzenlenebilir. Bu ise bilgi site "
"içeriğimizin kalitesini artırır."
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
"Bu değişiklikler size uygun değilse, sizin seçiminize saygılı değilse, "
"lütfen bize bildirin."
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "Hala aklınıza takılan bir soru mu var?"
-#: skins/default/templates/faq_static.html:85
+#: skins/default/templates/faq_static.html:80
#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Please <a href='%(ask_question_url)s'>ask</a> your question, help make our "
"community better!Lütfen sorularınızı %(ask_question_url)s kısmına yazın. "
@@ -5040,6 +4996,68 @@ msgstr ""
"\n"
"Merhaba, bu bir %(site_title)s geribildirim mesajıdır.\n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "bir kullanıcı adı seçin"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5160,179 +5178,156 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr "Saygılarımızla, <BR> Site yönetimi"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr "Bu soruyu tekrar aç"
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-#, fuzzy
-msgid "i like this question (click again to cancel)"
-msgstr "bunu beğendim (iptal için tekrar tıklayın)"
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "bu cevabı beğendim (iptal etmek için tekrar tıklayın)"
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr "oy geçerli sayısı"
-#: skins/default/templates/macros.html:43
-#, fuzzy
-msgid "i dont like this question (click again to cancel)"
-msgstr "bu yazıyı beğenmedim (iptal etmek için tekrar tıklayın)"
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr "bu cevabı beğenmedim (iptal etmek için tekrar tıklayın)"
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr "anonim"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "soruldu"
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "cevaplandı"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "yollandı"
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "güncellendi"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "'%(tag)s' etiketli sorulara bak"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "bu yorumu sil"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "yorum ekle"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "dah fazla<strong>%(counter)s</strong>gör"
-msgstr[1] "daha fazla<strong>%(counter)s</strong>gör"
-
-#: skins/default/templates/macros.html:310
-#, fuzzy, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] ""
-"daha fazla yorum <strong>%(counter)s</strong> görün\n"
-" "
-msgstr[1] "daha fazla yorum <strong>%(counter)s</strong> görün"
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "<CODE>%(username)s</code> Gravatar görüntüsü"
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "karmanız %(reputation)s"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "önceki"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "şuanki sayfa"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "sayfa numarası %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "sonraki sayfa"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "sayfa başına mesaj"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, fuzzy, python-format
msgid "responses for %(username)s"
msgstr "bir kullanıcı adı seçin"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, fuzzy, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "Yeni bir cevabın var"
msgstr[1] "Yeni %(response_count)s cevapların var"
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "şu an yeni cevap yok"
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, fuzzy, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "İlk işaretlenen ileti"
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, fuzzy, python-format
msgid "%(new)s new flagged posts"
msgstr "İlk işaretlenen ileti"
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, fuzzy, python-format
msgid "%(seen)s flagged posts"
msgstr "İlk işaretlenen ileti"
@@ -5341,10 +5336,37 @@ msgstr "İlk işaretlenen ileti"
msgid "Questions"
msgstr "Sorular"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
-msgstr "Gizlilik politikası"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "dah fazla<strong>%(counter)s</strong>gör"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "dah fazla<strong>%(counter)s</strong>gör"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "yorum ekle"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "Kendi soruna cevap yaz!"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "Cevabınız"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Cevap yollamak için üye girişi yapmalısınız"
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
@@ -5353,8 +5375,9 @@ msgstr "Soruyu düzenle"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "Etiket değiştir"
+#, fuzzy
+msgid "Retag question"
+msgstr "İlgili sorular"
#: skins/default/templates/question_retag.html:21
#, fuzzy
@@ -5411,6 +5434,13 @@ msgstr "Bu soruyu tekrar aç"
msgid "Reopen this question"
msgstr "Bu soruyu tekrar aç"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
msgid "Revision history"
@@ -5441,17 +5471,17 @@ msgstr "Soru şu sebepten dolayı kaldırıldı:"
msgid "Subscribe"
msgstr "etiketleri kullan"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "Etiket listesi"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "Etiket listesi"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
#, fuzzy
msgid "Sort by &raquo;"
msgstr "Sıralama:"
@@ -5472,7 +5502,7 @@ msgstr "etiket kullanım sıklığına göre"
msgid "by popularity"
msgstr "popülerliğe göre"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "Hiçbir şey bulunamadı"
@@ -5486,8 +5516,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "itibar puanı"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5518,7 +5550,7 @@ msgstr "kullanıcı sorgusuna eşleşen %(suser)s :"
msgid "Nothing found."
msgstr "Hiçbir şey bulunamadı."
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5535,41 +5567,41 @@ msgstr "%(author_name)s 'ın katkılarıyla"
msgid "Tagged"
msgstr "etiketlendi"
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr "Arama ipuçları:"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr "yazarı sil"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
#, fuzzy
msgid " or "
msgstr "veya"
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr "etiketleri temizle"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr "baştan başla"
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
"- daha fazla etiket eklemek veya incelemek için inceleme alanını genişlet"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr "Arama ipucu:"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr "etiketleri kullanmak, arama sonucuna tam olarak odaklanmanızı sağlar"
@@ -5609,19 +5641,19 @@ msgid "Please always feel free to ask your question!"
msgstr ""
"Asla soru sormaktan çekinmeyin! Sorun ki, sayenizde başkaları da öğrensin!"
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr "Aradığını bulamadın mı?"
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr "Hemen kendi sorunu yolla!"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
msgid "subscribe to the questions feed"
msgstr "soruya ve cevaplarına abone ol"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5633,21 +5665,21 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, fuzzy, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] "Her etiket en fazla %(max_chars)d karakter içerebilir"
msgstr[1] "Her etiket en fazla %(max_chars)d karakter içerebilir"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, fuzzy, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "En fazla %(tag_count)d etiket kullanabilirsiniz"
msgstr[1] "En fazla %(tag_count)d etiket kullanabilirsiniz"
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, fuzzy, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5657,11 +5689,11 @@ msgstr "en fazla 5 etiket, her etiket en fazla 20 karakter"
#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
@@ -5670,75 +5702,64 @@ msgstr[1] ""
"\n"
"%(counter)s Cevaplar:"
+#: skins/default/templates/question/answer_tab_bar.html:11
+#, fuzzy
+msgid "Sort by »"
+msgstr "Sıralama:"
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr "ilk önce eski cevaplar görünecek"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "eski cevaplar"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "yeni cevaplar ilk önce görünecek"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "yeni cevaplar"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "çok oy alan cevaplar önce görünsün"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "popüler cevaplar"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "Kendi soruna cevap yaz!"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "Cevap yollamak için üye girişi yapmalısınız"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "Cevabınız"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr "Bu soruya ilk cevabı sen yaz!"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr "Anonim olarak soruyu cevaplayıp oturum açabilirsiniz."
-
-#: skins/default/templates/question/new_answer_form.html:34
-#, fuzzy
-msgid "answer your own question only to give an answer"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:36
+msgid ""
"<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)! Kendi soruna cevap vermek üzeresin. Ya da sorunu daha da "
-"açıklamak mı istiyorsun?"
-
-#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
-msgstr "lütfen sadece cevap verin, tartışma yok."
-
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
-msgstr "Cevap yollamak için üye girişi yapmalısınız"
+"not like)!"
+msgstr ""
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Cevabı yayınla"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5756,37 +5777,37 @@ msgstr "veya"
msgid "email"
msgstr "E-mail"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Etiketleri"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "En ilgi çekici soruyu gormek için tıklayın"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "Tüm sorular"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "Tüm sorular"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "En ilgi çekici soruyu gormek için tıklayın"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "Tüm sorular"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, fuzzy, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
@@ -5795,23 +5816,23 @@ msgstr[0] ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
msgstr[1] "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "E-mail güncellemeleri iptal edildi"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "soruya ve cevaplarına abone ol"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "soruya ve cevaplarına abone ol"
@@ -5821,48 +5842,33 @@ msgid "Stats"
msgstr ""
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "sorulma zamanı"
+#, fuzzy
+msgid "Asked"
+msgstr "soruldu"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "izlenme sayısı"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "kez"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "son güncelleme"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "İlgili sorular"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr "Yeni cevaplar için beni günlük olarak uyar"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
-msgstr "Yeni cevaplar için beni haftalık olarak uyar"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
#, fuzzy
-msgid "Notify me immediately when there are any new answers"
+msgid "Email me when there are any new answers"
msgstr "Yeni cevaplar için beni haftalık olarak uyar"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
-msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr ""
-"%(profile_url)s adresini kullanarak, size gelecek uyarı e-postalarının "
-"sıklığını değiştirebilirsiniz."
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
#, fuzzy
msgid "once you sign in you will be able to subscribe for any updates here"
msgstr ""
@@ -5870,6 +5876,12 @@ msgstr ""
"up for the periodic email updates about this question.güncellemelerden "
"haberdar olmak için kaydolun."
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+
#: skins/default/templates/user_profile/user.html:12
#, python-format
msgid "%(username)s's profile"
@@ -5901,8 +5913,13 @@ msgstr "Kayıtlı kullanıcı"
msgid "Screen Name"
msgstr "Görünen isim"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "Hesap silindi."
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "Güncelleme"
@@ -5916,13 +5933,19 @@ msgstr "e-mail abonelikleri"
msgid "Email subscription settings"
msgstr "E-mail abonelik ayarları"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr "E-posta üyelik ayarları bilgisi"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "E-mail yollamayı duraklat"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr "E-mail adresiniz"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5951,21 +5974,25 @@ msgid "flagged items (%(flag_count)s)"
msgstr "En fazla %(tag_count)d etiket kullanabilirsiniz"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
#, fuzzy
msgid "select:"
msgstr "sil"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
#, fuzzy
msgid "seen"
msgstr "son görülme"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
#, fuzzy
msgid "new"
msgstr "en yeni"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
#, fuzzy
msgid "none"
msgstr "bronz"
@@ -5984,6 +6011,16 @@ msgstr "en iyi cevap olarak işaretlenmiş"
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "tüm etiketleri gör"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "sil"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "profilimi güncelle"
@@ -5998,7 +6035,8 @@ msgid "real name"
msgstr "gerçek ismi"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "üyelik başlangıcı"
#: skins/default/templates/user_profile/user_info.html:63
@@ -6006,8 +6044,13 @@ msgid "last seen"
msgstr "son görülme"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
-msgstr "websitesi"
+#, fuzzy
+msgid "website"
+msgstr ""
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"Website\n"
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"İnternet sitesi"
#: skins/default/templates/user_profile/user_info.html:75
msgid "location"
@@ -6156,20 +6199,17 @@ msgid "%(username)s's network is empty"
msgstr "%(username)s isimli kullanıcının profili"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
#, fuzzy
msgid "activity"
msgstr "aktif"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "Karma değişiklik kayıtları"
@@ -6192,21 +6232,17 @@ msgstr[0] "<span class=\"count\">1</span> Madalya"
msgstr[1] "<span class=\"count\">%(counter)s</span> Madalya"
#: skins/default/templates/user_profile/user_stats.html:16
-#, fuzzy, python-format
-msgid "<span class=\"count\">%(counter)s</span> Answer"
-msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
-msgstr[0] "<span class=\"count\">1</span> Madalya"
-msgstr[1] "<span class=\"count\">%(counter)s</span> Madalya"
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "cevap"
+msgstr[1] "cevap"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "cevap için %(answer_score)s kez oy kullanıldı"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "bu cevap doğru olarak seçildi"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, fuzzy, python-format
msgid "(%(comment_count)s comment)"
@@ -6244,14 +6280,14 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] "<span class=\"count\">%(counter)s</span> Etiket"
msgstr[1] "<span class=\"count\">%(counter)s</span> Etiket"
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, fuzzy, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
msgstr[0] "<span class=\"count\">1</span> Madalya"
msgstr[1] "<span class=\"count\">%(counter)s</span> Madalya"
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "cevap ipuçları"
@@ -6260,7 +6296,7 @@ msgstr "cevap ipuçları"
msgid "User profile"
msgstr "Kullanıcı profili"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "diğer sorulara cevaplar ve yorumlar"
@@ -6269,49 +6305,41 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "kullanıcı itibar grafiği"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "itibar geçmişi"
-
#: skins/default/templates/user_profile/user_tabs.html:25
#, fuzzy
msgid "questions that user is following"
msgstr "kullanıcının favori olarak seçtiği sorular"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "son etkinlik"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "kullanıcı oy rekoru"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "kritik oy"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "oy"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "E-mail abonelik ayarları"
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
#, fuzzy
msgid "moderate this user"
msgstr "Bu kullanıcıyı yönet"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "oy"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "cevap ipuçları"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "Cevabınızın sitemizdeki konu ile alakalı olmasına dikkat edin"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6319,8 +6347,10 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr "tartışmaya girmek yerine, soruya bir cevap vermeye çalışın"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "ayrıntılarıyayınlamayı deneyin"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "yeterince ayrıntılı olmasına çalışın"
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -6334,7 +6364,8 @@ msgstr "sık sorulan soruları gör"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "İpuçları"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6359,11 +6390,6 @@ msgid "**bold** or __bold__"
msgstr "** Kalın ** veya __bold__"
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "bağlantı"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6390,34 +6416,29 @@ msgstr "temel HTML etiketleri de desteklenmektedir"
msgid "learn more about Markdown"
msgstr "Markdown hakkında daha fazla bilgi"
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "soru sor"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr "soru bilgisi göndermek için giriş yapın"
-#: skins/default/templates/widgets/ask_form.html:10
-#, fuzzy, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"<span class='strong big'>Looks like your email address, %(email)s has not "
+
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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>."
+"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/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Soru göndermek için üye girişi yapmalısınız"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Soruyu yayınla"
+"question will saved as pending meanwhile."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6433,10 +6454,15 @@ msgid "about"
msgstr "hakkımızda"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "gizlilik politikası"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "görüşlerinizi bildirin"
@@ -6457,17 +6483,10 @@ msgstr "kullanıcılar"
msgid "badges"
msgstr "rozetler"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "soru ipuçları"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "lütfen ilgili bir soru sorunuz"
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "yeterince ayrıntılı olmasına çalışın"
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr "Cevabınızın sitemizdeki konu ile alakalı olmasına dikkat edin"
#: skins/default/templates/widgets/question_summary.html:12
#, fuzzy
@@ -6490,28 +6509,28 @@ msgid_plural "votes"
msgstr[0] "oy/"
msgstr[1] "oy/"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr "TÜMÜ"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr "cevapsız sorular gör"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr "YANITLANMAMIŞ"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "beğendiğiniz soruları gör"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr "TAKİP EDİLEN"
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
msgid "Please ask your question here"
msgstr "Siz de sorun!!"
@@ -6524,28 +6543,26 @@ msgstr "karma:"
msgid "badges:"
msgstr "rozetler:"
-#: skins/default/templates/widgets/user_navigation.html:8
+#: skins/default/templates/widgets/user_navigation.html:9
#, fuzzy
-msgid "logout"
-msgstr ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"çıkış\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"oturumu kapat"
+msgid "sign out"
+msgstr "cikis/"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "giriş"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "Lütfen buradan giriş yapın:"
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr "Ayarlar"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "0"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
+msgstr "bronz"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr "Ahh, özür dileriz - bir hata meydana geldi"
@@ -6562,7 +6579,8 @@ msgid "this field is required"
msgstr "bu alanın doldurulması gereklidir"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "bir kullanıcı adı seçin"
#: utils/forms.py:69
@@ -6598,8 +6616,8 @@ msgstr ""
"lütfen kullanıcı isminize en azından bir kaç alfabetik karakter ekleyin"
#: utils/forms.py:138
-msgid "your email address"
-msgstr "e-posta adresin"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6615,17 +6633,13 @@ msgstr ""
"Bu E-mail sitemizde kullanılıyor. Şifre hatırlatmayı deneyebilir ya da "
"yeniden kayıt olabilirsiniz."
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "şifre seçin"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "şifre yazmalısınız."
#: utils/forms.py:173
-msgid "retype password"
-msgstr "şifreyi yeniden yazın"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6635,28 +6649,59 @@ msgstr "lütfen şifrenizi yeniden yazın"
msgid "sorry, entered passwords did not match, please try again"
msgstr "Üzgünüm, şifreler uyuşmuyor lütfen tekrar deneyin."
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "2 gün önce"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "dün"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] "%(hr)d saat önce"
msgstr[1] "%(hr)d saat önce"
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] "%(min)d dakika önce"
msgstr[1] "%(min)d dakika önce"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6669,216 +6714,768 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr "üye girişi yapmadan gelen kutusuna bakamazsınız."
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "üye girişi yapmadan oy kullanamazsınız"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr ""
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr ""
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "üye girişi yapmadan gelen kutusuna bakamazsınız."
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr ""
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "üye girişi yapmadan cevap veremezsiniz."
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
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>aboneliğiniz kaydedildi %(email)s adresindeki doğrulama linkini "
"tıklamalısınız. Ayrıntılar için: %(details_url)s"
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "E-mail güncelleme sıklığı günlük olarak belirtilmiştir."
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, fuzzy, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr "Lütfen, giriş yapın veya askbot'a katılın"
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr "Lütfen oy vermek için giriş yapın:"
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "Lütfen oy vermek için giriş yapın:"
+
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "%(date)s tarihinde"
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Sorucevap.de geribildirim"
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "Görüşleriniz için teşekkür ederiz!"
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
"Görüşlerinizi bekliyoruz! Lütfen bize, yakın bir zamanda mutlaka sitemiz "
"hakkındaki görüşlerinizi bildirin :)"
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr "Gizlilik politikası"
+
+#: views/readers.py:133
#, fuzzy, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s soru"
msgstr[1] "%(q_num)s soru"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d%(badge_level)s rozet"
-msgstr[1] "%(badge_count)d%(badge_level)s rozetler"
-
-#: views/readers.py:416
+#: views/readers.py:388
#, fuzzy
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr "bu soru favori olarak seçildi"
-#: views/users.py:212
+#: views/users.py:206
#, fuzzy
msgid "moderate user"
msgstr "yoneticiler/"
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "kullanıcı profili"
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "kullanıcı profiline genel bakış"
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "son kullanıcı etkinliği"
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "profil - son etkinlikler"
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "profil - cevapları"
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "profil - oy"
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "toplulukta kullanıcının itibarı"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr "karma:"
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "profil - kullanıcı itibarı"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "kullanıcının favori soruları"
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "profil - favori sorular"
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "değişiklikler kaydedildi"
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "E-mail güncellemeleri iptal edildi"
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "profil - e-mail abonelikleri"
-#: views/writers.py:59
+#: views/writers.py:60
#, fuzzy
msgid "Sorry, anonymous users cannot upload files"
msgstr "üye girişi yapmadan oy kullanamazsınız"
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "izin verilen dosya türleri '%(file_types)s'"
-#: views/writers.py:92
+#: views/writers.py:84
#, fuzzy, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "maksimum dosya yükleme boyutu %s Kb"
-#: views/writers.py:100
+#: views/writers.py:92
#, fuzzy
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
"Yükleme dosyası hatası! Lütfen site yöneticisi ile iletişime geçin. Teşekkür "
"ederiz. %s"
-#: views/writers.py:192
-msgid "Please log in to ask questions"
-msgstr "Soru sormak için giriş yapınız"
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr "Soruları cevaplandırmak için giriş yapınız"
-#: views/writers.py:600
+#: views/writers.py:572
#, 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:649
+#: views/writers.py:589
#, fuzzy
msgid "Sorry, anonymous users cannot edit comments"
msgstr "üye girişi yapmadan oy kullanamazsınız"
-#: views/writers.py:658
+#: views/writers.py:619
#, 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:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "Özür dileriz, bazı teknik sorunlar yaşıyoruz"
-#~ msgid "question content must be > 10 characters"
-#~ msgstr "soru içeriği en az 10 karakter olmalı"
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "bu-yazıları-etiket-olarak-kullan"
+
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "bu e-posta gravatar bağlantılı olacaktır"
+
+#~ msgid "URL for the LDAP service"
+#~ msgstr "LDAP servisi için URL"
+
+#, fuzzy
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Hesabınız: Şifremi değiştir"
+
+#~ msgid "question_answered"
+#~ msgstr "cevaplanmış_soru"
+
+#~ msgid "question_commented"
+#~ msgstr "yorumlanmış soru"
+
+#~ msgid "answer_commented"
+#~ msgstr "yorumlanmış soru"
+
+#~ msgid "answer_accepted"
+#~ msgstr "kabul edilmiş soru"
+
+#~ msgid "Incorrect username."
+#~ msgstr "Hatalı kullanıcı adı."
+
+#, fuzzy
+#~ 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>Dear %(name)s,</p></p>The following question has been updated on the "
+#~ "Q&A forum:</p>"
+#~ msgstr[1] ""
+#~ "<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated "
+#~ "on the Q&A forum:</p>"
+
+#~ msgid ""
+#~ "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 ""
+#~ "Lütfen askbot'u ziyaret edin ve yeniliklerden haberdar olun! İnsanlara "
+#~ "burada olani biteni anlatın. Belki buradaki soruları cevaplayabilecek "
+#~ "veya soru sorarak askbot'tan faydalanabilecek birilerini tanıyorsunuzdur."
+
+#~ 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 ""
+#~ "Seçili sorulara aboneliğiniz 'günlük' olarak görünüyor. Eğer birden fazla "
+#~ "e-posta alıyorsanız, lütfen bunu bize bildirin."
+
+#~ 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 ""
+#~ "Seçili sorulara aboneliğiniz 'haftalık' olarak görünüyor. Eğer birden "
+#~ "fazla e-posta alıyorsanız, lütfen bunu bize bildirin."
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr "Ölen linkleri önceden görme şansın olabilir. "
+
+#, fuzzy
+#~ msgid ""
+#~ "go to %(email_settings_link)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 ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr "resim göndermek için en az %(min_rep)s puan toplamalısınız"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr "Engellenen kullanıcılar ileti yapamaz"
+
+#~ msgid "suspended users cannot post"
+#~ msgstr "Dondurulan kullanıcılar ileti yapamaz"
+
+#, fuzzy
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr "Engellenen kullanıcılar ileti yapamaz"
+
+#, fuzzy
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr "Dondurulan kullanıcılar ileti yapamaz"
+
+#, fuzzy
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr "Dondurulan kullanıcılar ileti yapamaz"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "verilen bir oyu iptal edemezsiniz"
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s soruyu düzenledi"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr "%(people)s adlı üyemiz %(new_answer_count)s yeni cevap yolladı"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s bir soruyu yorumladı"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr ""
+#~ "suggest forum/models/question.py:508\n"
+#~ " \n"
+#~ "%(people)s cevaba yorum yazdı"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s bir cevabı yorumladı"
+
+#~ msgid "change %(email)s info"
+#~ msgstr "bilgileri %(email)s değiştir"
+
+#, fuzzy
+#~ 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.buraya bakarak neden E-mail adresinin gerekli olduğunu "
+#~ "görebilirsiniz: %(gravatar_faq_url)s"
+
+#~ msgid "Your new Email"
+#~ msgstr "Yeni e-posta adresiniz"
+
+#, fuzzy
+#~ 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>. "
+#~ "%(email)s adresini doğrulayın ya da %(change_email_url)s adresine gidin."
+
+#, fuzzy
+#~ 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.eski "
+#~ "%(email)s saklansın diyorsanız, %(change_email_url)s adresi size yardımcı "
+#~ "olacaktır."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr "Şimdiki %(email)s bunun için kullanılabilir"
+
+#~ msgid "thanks for verifying email"
+#~ msgstr "E-posta adresinizi onayladığınız için teşekkürler"
+
+#~ msgid "email key not sent"
+#~ msgstr "e-posta kodu gönderilmedi"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "E-mail şifresi %(email)s yollanamadı. E-mail değiştirmek için: "
+#~ "%(change_link)s adresine bakın."
+
+#, fuzzy
+#~ 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>Yeni %(provider)s hesabı kayıt bilgisi için lütfen bakınız: "
+#~ "%(gravatar_faq_url)s"
+
+#, fuzzy
+#~ 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>%(username)s kullanıcı "
+#~ "adı, %(provider)s için başka birisi tarafından alınmıştır. Başka bir isim "
+#~ "deneyin. Lütfen okuyun: %(gravatar_faq_url)s"
+
+#, fuzzy
+#~ 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>başka bir "
+#~ "%(provider)s hesabı kaydetmek için bakınız: %(gravatar_faq_url)s"
+
+#, fuzzy
+#~ 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>Yeni Facebook hesabı ile bağlanma kaydı bilgisi: "
+#~ "%(gravatar_faq_url)s"
+
+#~ msgid "This account already exists, please use another."
+#~ msgstr ""
+#~ "Bu kullanıcı adı sitemizde zaten kayıtlı. Lütfen başka bir tane deneyin."
+
+#~ msgid "Screen name label"
+#~ msgstr "Görünen isim etiketi"
#, fuzzy
+#~ msgid "Email address label"
+#~ msgstr ""
+#~ "<strong>Email Address</strong> (<i>will <strong>not</strong> be shared "
+#~ "with anyone, must be valid</i>)"
+
+#, fuzzy
+#~ 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."
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr ""
+#~ "Etiket filtreleme aracı sağ panelde, oturum açınca bir kez görünecektir."
+
+#~ msgid "create account"
+#~ msgstr "hesap oluştur"
+
#~ msgid ""
-#~ "If you believe that this message was sent in mistake - \n"
-#~ "no further action is needed. Just ignore this email, we apologize\n"
-#~ "for any inconvenience."
+#~ "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 ""
#~ "Eğer bu mesajın size yanlışlıkla gönderildiğini düşünüyorsanız, hiçbir "
#~ "şey yapmanıza gerek yok. <BR> Bu mesajı dikkate almayın. <BR> Bu durum "
#~ "için özür dileriz."
+#~ msgid "Login"
+#~ msgstr "Giriş"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "Neden OpenID kullanıyoruz?"
+
+#, fuzzy
+#~ msgid "with openid it is easier"
+#~ msgstr "With the OpenID you don't need to create new username and password."
+
+#, fuzzy
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "You can safely re-use the same login for all OpenID-enabled websites."
+
+#, fuzzy
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "There are > 160,000,000 OpenID account in use. Over 10,000 sites are "
+#~ "OpenID-enabled."
+
+#, fuzzy
+#~ msgid "openid is supported open standard"
+#~ msgstr ""
+#~ "OpenID is based on an open standard, supported by many organizations."
+#~ "OpenID açık kaynak standartları ile desteklenmektedir"
+
+#~ msgid "Find out more"
+#~ msgstr "Daha fazla bilgi"
+
+#~ msgid "Get OpenID"
+#~ msgstr "OpenID hesabı açın"
+
+#, fuzzy
+#~ msgid "Traditional signup info"
+#~ msgstr ""
+#~ "<span class='strong big'>If you prefer, create your forum login name and "
+#~ "password here. However</span>, please keep in mind that we also support "
+#~ "<strong>OpenID</strong> login method. With <strong>OpenID</strong> you "
+#~ "can simply reuse your external login (e.g. Gmail or AOL) without ever "
+#~ "sharing your login details with anyone and having to remember yet another "
+#~ "password."
+
+#~ msgid "Create Account"
+#~ msgstr "Hesap oluştur"
+
+#~ msgid "answer permanent link"
+#~ msgstr "kalıcı bağlantıyı cevapla"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "tüm etiketleri gör"
+
+#, fuzzy
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "bu soruyu yazan kişi, bu cevabı doğru olarak seçti"
+
+#~ msgid "Related tags"
+#~ msgstr "İlgili etiketler"
+
+#~ msgid "Ask a question"
+#~ msgstr "Soru sor"
+
+#~ msgid "Badges summary"
+#~ msgstr "Madalya özeti"
+
+#~ msgid "gold badge description"
+#~ msgstr "altın rozetin açıklaması"
+
+#~ msgid "silver badge description"
+#~ msgstr "gümüş rozetin açıklaması"
+
+#~ msgid "bronze badge description"
+#~ msgstr "bronze rozetin açıklaması"
+
+#~ 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 ""
+#~ "bir soru & cevap sitesi olup, asla ve asla bir tartışma ortamı değildir. "
+#~ "Bu nedenle cevaplarınızı, tartışmalardan kaçınacak şekilde, yorum ve "
+#~ "karşılıklı fikir alışverişine dayalı şekilde yazınız."
+
+#, fuzzy
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "When a question or answer is upvoted, the user who posted them will gain "
+#~ "some points, which are called \"karma points\". These points serve as a "
+#~ "rough measure of the community trust to him/her. Various moderation tasks "
+#~ "are gradually assigned to the users based on those points."
+
+#~ msgid "use tags"
+#~ msgstr "etiketleri kullan"
+
+#~ msgid "what is gravatar"
+#~ msgstr "Gravatar nedir?"
+
+#, fuzzy
+#~ msgid "gravatar faq info"
+#~ msgstr "gravatar sss bilgi"
+
+#, fuzzy
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "bunu beğendim (iptal için tekrar tıklayın)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "bu cevabı beğendim (iptal etmek için tekrar tıklayın)"
+
+#, fuzzy
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "bu yazıyı beğenmedim (iptal etmek için tekrar tıklayın)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "bu cevabı beğenmedim (iptal etmek için tekrar tıklayın)"
+
+#, fuzzy
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] ""
+#~ "daha fazla yorum <strong>%(counter)s</strong> görün\n"
+#~ " "
+#~ msgstr[1] "daha fazla yorum <strong>%(counter)s</strong> görün"
+
+#~ msgid "posts per page"
+#~ msgstr "sayfa başına mesaj"
+
+#~ msgid "Change tags"
+#~ msgstr "Etiket değiştir"
+
+#~ msgid "reputation"
+#~ msgstr "itibar puanı"
+
+#~ msgid "oldest answers"
+#~ msgstr "eski cevaplar"
+
+#~ msgid "newest answers"
+#~ msgstr "yeni cevaplar"
+
+#~ msgid "popular answers"
+#~ msgstr "popüler cevaplar"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr "Anonim olarak soruyu cevaplayıp oturum açabilirsiniz."
+
+#, fuzzy
+#~ 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)! Kendi soruna cevap vermek üzeresin. Ya da sorunu "
+#~ "daha da açıklamak mı istiyorsun?"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr "lütfen sadece cevap verin, tartışma yok."
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Cevap yollamak için üye girişi yapmalısınız"
+
+#~ msgid "Answer the question"
+#~ msgstr "Cevabı yayınla"
+
+#~ msgid "question asked"
+#~ msgstr "sorulma zamanı"
+
+#~ msgid "question was seen"
+#~ msgstr "izlenme sayısı"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr "Yeni cevaplar için beni günlük olarak uyar"
+
+#, fuzzy
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr "Yeni cevaplar için beni haftalık olarak uyar"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr ""
+#~ "%(profile_url)s adresini kullanarak, size gelecek uyarı e-postalarının "
+#~ "sıklığını değiştirebilirsiniz."
+
+#~ msgid "email subscription settings info"
+#~ msgstr "E-posta üyelik ayarları bilgisi"
+
+#~ msgid "Stop sending email"
+#~ msgstr "E-mail yollamayı duraklat"
+
+#~ msgid "user website"
+#~ msgstr "websitesi"
+
+#, fuzzy
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] "<span class=\"count\">1</span> Madalya"
+#~ msgstr[1] "<span class=\"count\">%(counter)s</span> Madalya"
+
+#~ msgid "reputation history"
+#~ msgstr "itibar geçmişi"
+
+#~ msgid "recent activity"
+#~ msgstr "son etkinlik"
+
+#~ msgid "casted votes"
+#~ msgstr "kritik oy"
+
+#~ msgid "answer tips"
+#~ msgstr "cevap ipuçları"
+
+#~ msgid "please try to provide details"
+#~ msgstr "ayrıntılarıyayınlamayı deneyin"
+
+#~ msgid "ask a question"
+#~ msgstr "soru sor"
+
+#, fuzzy
+#~ 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. "
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Soru göndermek için üye girişi yapmalısınız"
+
+#~ msgid "question tips"
+#~ msgstr "soru ipuçları"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "lütfen ilgili bir soru sorunuz"
+
+#, fuzzy
+#~ msgid "logout"
+#~ msgstr ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "çıkış\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "oturumu kapat"
+
+#~ msgid "login"
+#~ msgstr "giriş"
+
+#~ msgid "no items in counter"
+#~ msgstr "0"
+
+#~ msgid "your email address"
+#~ msgstr "e-posta adresin"
+
+#~ msgid "choose password"
+#~ msgstr "şifre seçin"
+
+#~ msgid "retype password"
+#~ msgstr "şifreyi yeniden yazın"
+
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d%(badge_level)s rozet"
+#~ msgstr[1] "%(badge_count)d%(badge_level)s rozetler"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "toplulukta kullanıcının itibarı"
+
+#~ msgid "Please log in to ask questions"
+#~ msgstr "Soru sormak için giriş yapınız"
+
+#~ msgid "question content must be > 10 characters"
+#~ msgstr "soru içeriği en az 10 karakter olmalı"
+
#, fuzzy
#~ msgid "(please enter a valid email)"
#~ msgstr "geçerli bir e-mail adresi girin"
@@ -6916,9 +7513,6 @@ msgstr "Özür dileriz, bazı teknik sorunlar yaşıyoruz"
#~ msgid "Question tags"
#~ msgstr "Etiketleri"
-#~ msgid "questions"
-#~ msgstr "sorular"
-
#~ msgid "search"
#~ msgstr "ara"
@@ -6932,9 +7526,6 @@ msgstr "Özür dileriz, bazı teknik sorunlar yaşıyoruz"
#~ msgid "In:"
#~ msgstr "Sorular:"
-#~ msgid "Sort by:"
-#~ msgstr "Sıralama:"
-
#~ msgid "Email (not shared with anyone):"
#~ msgstr "E-mail (kimse görmeyecektir):"
diff --git a/askbot/locale/tr/LC_MESSAGES/djangojs.po b/askbot/locale/tr/LC_MESSAGES/djangojs.po
index 92d99643..22373215 100644
--- a/askbot/locale/tr/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/tr/LC_MESSAGES/djangojs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:54-0500\n"
"PO-Revision-Date: 2011-11-30 11:38+0000\n"
"Last-Translator: kayhantolga <kayhantolga@letscoding.com>\n"
"Language-Team: Turkish (http://www.transifex.net/projects/p/askbot/team/"
@@ -21,7 +21,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr "%s kaydını silmek istediğine emin misin?"
@@ -39,38 +39,38 @@ msgstr "Oturum açmak için bir veya daha fazla yöntem seçin"
msgid "passwords do not match"
msgstr "şifreler eşleşmiyor"
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr "Geçerli metodu göster/değiştir"
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr "%s gir ve devam et"
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr "%(provider_name)s hesabın ile %(site)s 'e bağlan"
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr "%s için şifreni değiştir"
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr "Şifre değiştir"
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr "%s için bir şifre oluştur"
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr "Yeni şifre oluştur"
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr "Şifre oluştur - hesabını koru"
@@ -78,154 +78,77 @@ msgstr "Şifre oluştur - hesabını koru"
msgid "loading..."
msgstr "yükleniyor..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "etiketler boş olamaz"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "içerik boş olamaz"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "Lütfen en az %s karakter girin"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "lütfen bir başlık yazın"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "Lütfen en az %s karakter girin"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "buna yetkiniz yoktur"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "en cevap olarak kendi cevabınızı seçemezsiniz"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "lütfen üye girişi yapınız"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr "misafir kullanıcılar soruları takip edemez"
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr "misafir kullanıcılar yorum yazamaz"
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "üye girişi yapmadan oy kullanamazsınız"
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr "şikayetinizi onaylayın"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr "şikayetinizi onaylayın"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "üye girişi yapmadan şikayet gönderemezsiniz"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "Bunu silmek istediğinizden emin misiniz?"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "üye girişi yapmadan yazı silemez yada geri alamazsınız"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "yazı geri alındı"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "yazı silindi"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "Takip et"
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, fuzzy, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-"#-#-#-#-# djangojs.po (askbot) #-#-#-#-#\n"
-"Bir: %s takipçi\n"
-"#-#-#-#-# djangojs.po (askbot) #-#-#-#-#\n"
-"Bir: %s takipçi\n"
-"Diğer: %s takipçi"
-msgstr[1] ""
-"#-#-#-#-# djangojs.po (askbot) #-#-#-#-#\n"
-"Diğer: %s takipçi"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-"<div> Takip ediyor</div><div class=\"unfollow\"> Takipten vazgeç </div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "geri al"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "sil"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "yorum ekle"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "yorumu kaydet"
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "yazılabilir %s karakter eksik"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "yazılabilir %s karakter eksik"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr "iptal"
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "Yorum yazmak istemediğinize emin misiniz?"
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "bu yorumu sil"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "yorumu silmek istediğinizden emin misiniz?"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "Soru başlığını girin (En az 10 karakter)"
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "Eşleşen \"<span></span>\" etiketler:"
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "ve %s tane daha gösterilmeyen..."
@@ -240,118 +163,184 @@ msgstr[0] ""
"Bir: Bu bildirimi sil?\n"
"diğer: Bu bildirimleri sil?"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "bu yorumu sil"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "bu yorumu sil"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
" %(username)s takip etmek için <a href=\"%(signin_url)s\">Giriş yapın</a>"
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "takipten vazgeç %s"
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "takip ediyor: %s"
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "takip et %s"
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "kapatmak için tıkla"
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "yorumu düzenlemek için tıkla"
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "düzenle"
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr "%s etiketli soruları gör"
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "kalın"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "italik"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "link"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "alıntı"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "hazır metin"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "resimler"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr "ek"
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "numaralı liste"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "işaretli liste"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "Başlık"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "yatay bar"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "geri"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "yeniden"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
"örnek resmin URLsini girin: <br />http://www.example.com/image.jpg "
"\"resim başlığı\""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
"web adresini girin: <br />http://www.cnprog.com/ \"başlık bağlantısı\"</p>"
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "Yüklenecek dosyayı seçin"
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr "resimin açıklaması"
+#~ msgid "tags cannot be empty"
+#~ msgstr "etiketler boş olamaz"
+
+#~ msgid "content cannot be empty"
+#~ msgstr "içerik boş olamaz"
+
+#~ msgid "%s content minchars"
+#~ msgstr "Lütfen en az %s karakter girin"
+
+#~ msgid "please enter title"
+#~ msgstr "lütfen bir başlık yazın"
+
+#~ msgid "%s title minchars"
+#~ msgstr "Lütfen en az %s karakter girin"
+
+#~ msgid "Follow"
+#~ msgstr "Takip et"
+
+#, fuzzy
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] ""
+#~ "#-#-#-#-# djangojs.po (askbot) #-#-#-#-#\n"
+#~ "Bir: %s takipçi\n"
+#~ "#-#-#-#-# djangojs.po (askbot) #-#-#-#-#\n"
+#~ "Bir: %s takipçi\n"
+#~ "Diğer: %s takipçi"
+#~ msgstr[1] ""
+#~ "#-#-#-#-# djangojs.po (askbot) #-#-#-#-#\n"
+#~ "Diğer: %s takipçi"
+
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr ""
+#~ "<div> Takip ediyor</div><div class=\"unfollow\"> Takipten vazgeç </div>"
+
+#~ msgid "undelete"
+#~ msgstr "geri al"
+
+#~ msgid "delete"
+#~ msgstr "sil"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "yazılabilir %s karakter eksik"
+
+#~ msgid "%s characters left"
+#~ msgstr "yazılabilir %s karakter eksik"
+
+#~ msgid "cancel"
+#~ msgstr "iptal"
+
+#~ msgid "confirm abandon comment"
+#~ msgstr "Yorum yazmak istemediğinize emin misiniz?"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "yorumu silmek istediğinizden emin misiniz?"
+
+#~ msgid "click to edit this comment"
+#~ msgstr "yorumu düzenlemek için tıkla"
+
+#~ msgid "edit"
+#~ msgstr "düzenle"
+
+#~ msgid "see questions tagged '%s'"
+#~ msgstr "%s etiketli soruları gör"
+
+#~ msgid "image description"
+#~ msgstr "resimin açıklaması"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr "dosya adı"
+#~ msgid "file name"
+#~ msgstr "dosya adı"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr "bağlantı metni"
+#~ msgid "link text"
+#~ msgstr "bağlantı metni"
diff --git a/askbot/locale/vi/LC_MESSAGES/django.po b/askbot/locale/vi/LC_MESSAGES/django.po
index 4b8fdf11..6a824194 100644
--- a/askbot/locale/vi/LC_MESSAGES/django.po
+++ b/askbot/locale/vi/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:55-0500\n"
"PO-Revision-Date: 2010-05-09 07:03\n"
"Last-Translator: <cong.it@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,15 +22,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr ""
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr ""
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr ""
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr ""
@@ -57,23 +57,32 @@ msgstr ""
msgid "please enter a descriptive title for your question"
msgstr ""
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] ""
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr ""
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr ""
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -83,11 +92,11 @@ msgid_plural ""
"be used."
msgstr[0] ""
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr ""
-#: forms.py:210
+#: forms.py:232
#, fuzzy, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
@@ -96,12 +105,12 @@ msgstr[0] ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
msgstr[1] "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:227
+#: forms.py:249
#, fuzzy, 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"
@@ -110,338 +119,359 @@ msgstr[0] ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
msgstr[1] "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
+#: forms.py:258
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
msgstr ""
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
msgstr ""
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr ""
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
msgstr ""
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr ""
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr ""
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr ""
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr ""
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr ""
-#: forms.py:383
+#: forms.py:405
#, fuzzy
msgid "administrator"
msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr ""
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr ""
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr ""
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr ""
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr ""
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr ""
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr ""
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr ""
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr ""
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr ""
-#: forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr ""
-#: forms.py:580
+#: forms.py:531
#, fuzzy
msgid "Email:"
msgstr ""
"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr ""
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr ""
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr ""
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr ""
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr ""
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr ""
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr ""
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr ""
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr ""
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr ""
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr ""
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr ""
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr ""
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr ""
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr ""
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr ""
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr ""
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr ""
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr ""
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr ""
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "no askbot email please, thanks"
-#: forms.py:1157
-msgid "please choose one of the options above"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
msgstr ""
-#: urls.py:52
+#: urls.py:41
msgid "about/"
msgstr ""
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr ""
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr ""
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr ""
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr ""
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr ""
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+#, fuzzy
+msgid "questions"
+msgstr "Tips"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr ""
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr ""
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr ""
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr ""
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr ""
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr ""
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
msgid "vote/"
msgstr ""
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr ""
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr ""
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr ""
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr ""
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr ""
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr ""
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr ""
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr ""
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
#, fuzzy
msgid "account/"
@@ -575,134 +605,138 @@ msgid ""
msgstr ""
#: conf/email.py:38
+msgid "Enable email alerts"
+msgstr ""
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr ""
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr ""
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
-#: conf/email.py:62
+#: conf/email.py:71
#, fuzzy
msgid "Default notification frequency questions asked by the user"
msgstr "Asked"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr ""
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr ""
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr ""
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr ""
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr ""
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
#, fuzzy
msgid "Allow only one account per email address"
msgstr "Your email <i>(never shared)</i>"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
#, fuzzy
msgid "Allow posting questions by email"
msgstr ""
@@ -712,22 +746,46 @@ msgstr ""
"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."
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+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."
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -758,15 +816,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -774,11 +832,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -786,71 +844,54 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr ""
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr ""
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-#, fuzzy
-msgid "Explain how to change LDAP password"
-msgstr "Change your password"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -889,11 +930,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -950,109 +993,165 @@ msgid "Minimum length of answer body (number of characters)"
msgstr ""
#: conf/forum_data_rules.py:126
+msgid "Are tags required?"
+msgstr ""
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr ""
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
#, fuzzy
msgid "Use wildcard tags"
msgstr "Tags"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr ""
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
#, fuzzy
msgid "What should \"unanswered question\" mean?"
msgstr "unanswered questions"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "Tags"
+
+#: conf/leading_sidebar.py:20
+msgid "Enable left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1126,16 +1225,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1305,6 +1404,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1503,27 +1606,27 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr ""
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1648,21 +1751,21 @@ msgstr ""
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1670,40 +1773,40 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr ""
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1715,11 +1818,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1728,21 +1831,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1751,21 +1854,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1774,19 +1877,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1797,19 +1900,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1874,7 +1977,7 @@ msgstr ""
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
#, fuzzy
msgid "User settings"
msgstr ""
@@ -1882,35 +1985,62 @@ msgstr ""
"user sessions. Cookies must be enabled in your browser so that forum can "
"work for you."
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "Your email <i>(never shared)</i>"
+
+#: conf/user_settings.py:41
#, fuzzy
msgid "Allow account recovery by email"
msgstr "Your email <i>(never shared)</i>"
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+msgid "Default avatar for users"
+msgstr ""
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -2021,343 +2151,356 @@ msgstr ""
msgid "too localized"
msgstr ""
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr ""
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr ""
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr ""
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr ""
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr ""
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr ""
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr ""
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr ""
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr ""
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr ""
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr ""
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr ""
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr ""
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
#, fuzzy
msgid "Question has no answers"
msgstr "answered question"
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr ""
-#: const/__init__.py:122
+#: const/__init__.py:125
#, fuzzy
msgid "asked a question"
msgstr "Ask Your Question"
-#: const/__init__.py:123
+#: const/__init__.py:126
#, fuzzy
msgid "answered a question"
msgstr "unanswered"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr ""
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr ""
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr ""
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr ""
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "received badge"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr ""
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr ""
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr ""
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr ""
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr ""
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr ""
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr ""
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr ""
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr ""
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr ""
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr ""
-#: const/__init__.py:142
+#: const/__init__.py:145
#, fuzzy
msgid "reminder about unanswered questions sent"
msgstr "unanswered questions"
-#: const/__init__.py:146
+#: const/__init__.py:149
#, fuzzy
msgid "reminder about accepting the best answer sent"
msgstr "unanswered questions"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr ""
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "answered question"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "commented question"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr ""
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr ""
+#, fuzzy
+msgid "answered question"
+msgstr "unanswered"
-#: const/__init__.py:206
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "oldest"
+
+#: const/__init__.py:209
msgid "[closed]"
msgstr ""
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr ""
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr ""
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr ""
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr ""
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr ""
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr ""
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr ""
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr ""
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr ""
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr ""
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr ""
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
#, fuzzy
msgid "wavatar"
msgstr "How to change my picture (gravatar) and what is gravatar?"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr ""
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr ""
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr ""
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr ""
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr ""
-#: const/message_keys.py:15
+#: const/message_keys.py:21
#, fuzzy
msgid "most relevant questions"
msgstr "ask a question interesting to this community"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
#, fuzzy
msgid "click to see most relevant questions"
msgstr "questions with most answers"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr ""
-#: const/message_keys.py:18
+#: const/message_keys.py:24
#, fuzzy
msgid "click to see the oldest questions"
msgstr "questions with fewest answers"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr ""
-#: const/message_keys.py:20
+#: const/message_keys.py:26
#, fuzzy
msgid "click to see the newest questions"
msgstr "questions with most answers"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
#, fuzzy
msgid "click to see the least recently updated questions"
msgstr "least voted questions"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr ""
-#: const/message_keys.py:23
+#: const/message_keys.py:29
#, fuzzy
msgid "click to see the most recently updated questions"
msgstr "least voted questions"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
#, fuzzy
msgid "click to see the least answered questions"
msgstr "least voted questions"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
#, fuzzy
msgid "by answers"
msgstr "oldest"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
#, fuzzy
msgid "click to see the most answered questions"
msgstr "least voted questions"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "least voted questions"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
#, fuzzy
msgid "by votes"
msgstr "votes"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
#, fuzzy
msgid "click to see most voted questions"
msgstr "least voted questions"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
#, fuzzy
msgid "i-names are not supported"
msgstr "i-names không được hỗ trợ"
@@ -2410,11 +2553,12 @@ msgid "Your user name (<i>required</i>)"
msgstr ""
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "sorry, there is no such user name"
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "Vui lòng nhập tên và mật khẩu"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr ""
@@ -2452,7 +2596,7 @@ msgid "%(site)s user name and password"
msgstr "Vui lòng nhập tên và mật khẩu"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2539,79 +2683,79 @@ msgstr "Vui lòng nhập tên và mật khẩu"
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
#, fuzzy
msgid "Your new password saved"
msgstr "New password created"
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr ""
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr ""
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr ""
"Your email needs to be validated. Please see details <a "
"id='validate_email_alert' href='%(details_url)s'>here</a>."
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, python-format
msgid "Recover your %(site)s account"
msgstr ""
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2619,28 +2763,28 @@ msgstr ""
msgid "Site"
msgstr ""
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr ""
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr ""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr ""
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr ""
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, python-format
msgid "Allowed image file types are %(types)s"
msgstr ""
@@ -2657,7 +2801,7 @@ msgstr "karma"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
#, fuzzy
msgid "Change password"
msgstr "Change your password"
@@ -2720,122 +2864,52 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
#, fuzzy
msgid "Please accept the best answer for this question:"
msgstr "Ask Your Question"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
#, fuzzy
msgid "Please accept the best answer for these questions:"
msgstr "least voted questions"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
-#: management/commands/send_email_alerts.py:421
-#, fuzzy, 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>Dear %(name)s,</p></p>The following question has been updated on the Q&A "
-"forum:</p>"
-msgstr[1] ""
+#: management/commands/send_email_alerts.py:425
+#, python-format
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
-"the Q&A forum:</p>"
+"%(sitename)s:</p>"
+msgstr[0] ""
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr ""
-#: 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 ""
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr ""
-
-#: management/commands/send_email_alerts.py:490
-#, fuzzy, python-format
+#: management/commands/send_email_alerts.py:474
+#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
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>"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2846,61 +2920,61 @@ msgstr[0] ""
msgid "Please log in to use %s"
msgstr "please sign-in"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:334
+#: models/__init__.py:337
#, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr ""
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+msgid "Sorry, you cannot vote for your own posts"
msgstr ""
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr ""
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr ""
-#: models/__init__.py:431
+#: models/__init__.py:430
#, fuzzy
msgid "Sorry, blocked users cannot upload files"
msgstr ""
@@ -2908,7 +2982,7 @@ msgstr ""
"until this issue is resolved. Please contact the forum administrator to "
"reach a resolution."
-#: models/__init__.py:432
+#: models/__init__.py:431
#, fuzzy
msgid "Sorry, suspended users cannot upload files"
msgstr ""
@@ -2916,29 +2990,12 @@ msgstr ""
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "sorry, file uploading requires karma >%(min_rep)s"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-#, fuzzy
-msgid "blocked users cannot post"
-msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
-
-#: models/__init__.py:454 models/__init__.py:989
-#, fuzzy
-msgid "suspended users cannot post"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -2948,56 +3005,56 @@ msgid_plural ""
"minutes from posting"
msgstr[0] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:510
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3006,244 +3063,235 @@ msgid_plural ""
"by other users"
msgstr[0] ""
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr ""
-
-#: models/__init__.py:764
-#, fuzzy
-msgid "blocked users cannot flag posts"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-"Sorry, your account appears to be blocked and you cannot make new posts "
-"until this issue is resolved. Please contact the forum administrator to "
-"reach a resolution."
-#: models/__init__.py:766
-#, fuzzy
-msgid "suspended users cannot flag posts"
+#: models/__init__.py:783
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
-"Please contact the forum administrator to reach a resolution."
-#: models/__init__.py:768
+#: models/__init__.py:794
#, python-format
-msgid "need > %(min_rep)s points to flag spam"
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
msgstr ""
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
+msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr ""
"Sorry, your account appears to be blocked and you cannot make new posts "
"until this issue is resolved. Please contact the forum administrator to "
"reach a resolution."
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
-msgstr ""
-"Sorry, your account appears to be suspended and you cannot make new posts "
-"until this issue is resolved. You can, however edit your existing posts. "
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
+#: models/__init__.py:843
#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr ""
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr ""
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] ""
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] ""
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr ""
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
#, fuzzy
msgid "Site Adminstrator"
msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr ""
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr ""
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr ""
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, fuzzy, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
@@ -3251,7 +3299,7 @@ msgstr[0] ""
"Obtaining silver badge requires significant patience. If you have received "
"one, that means you have greatly contributed to this community."
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, fuzzy, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
@@ -3259,29 +3307,29 @@ msgstr[0] ""
"If you are an active participant in this community, you will be recognized "
"with this badge."
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "Tags"
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3548,155 +3596,137 @@ msgstr ""
msgid "Created a tag used by %(num)s questions"
msgstr ""
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr ""
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr ""
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr ""
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr ""
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr ""
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr ""
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr ""
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr ""
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr ""
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr ""
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr ""
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "How to validate email and why?"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr ""
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr ""
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr ""
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr ""
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr ""
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr ""
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr ""
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr ""
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr ""
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr ""
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
#, fuzzy
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "Vui lòng nhập tên và mật khẩu"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr ""
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr ""
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "Change Email"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3706,41 +3736,39 @@ msgstr "Your email <i>(never shared)</i>"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
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/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr ""
+msgid ""
"<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 "
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
"else."
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
msgstr ""
-"<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
-"anyone, must be valid)"
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
msgstr ""
-"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
#, fuzzy
msgid "Save Email"
msgstr "Change Email"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3748,174 +3776,115 @@ msgstr "Change Email"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
#, fuzzy
msgid "Validate email"
msgstr "How to validate email and why?"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
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/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
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/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, 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 "
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:69
-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 "
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
"updates</strong> - then will be notified about changes <strong>once a day</"
-"strong> or less frequently."
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "Validation email not sent"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "How to validate email and why?"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, 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 "
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
"necessary."
+msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "karma"
-#: skins/common/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/common/templates/authopenid/complete.html:30
-#, 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/common/templates/authopenid/complete.html:34
-#, 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/common/templates/authopenid/complete.html:37
-#, 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/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr ""
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr ""
-"<strong>Email Address</strong> (<i>will <strong>not</strong> be shared with "
-"anyone, must be valid</i>)"
+#: skins/common/templates/authopenid/complete.html:23
+#, fuzzy
+msgid "User registration"
+msgstr "karma"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
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/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
msgstr ""
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "Signup"
-
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
msgstr ""
@@ -3941,9 +3910,10 @@ msgstr "please sign-in"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
@@ -3962,8 +3932,8 @@ msgstr ""
#: skins/common/templates/authopenid/email_validation.txt:9
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
@@ -4011,9 +3981,9 @@ msgstr ""
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -4047,130 +4017,96 @@ msgid ""
"account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:87
+#: skins/common/templates/authopenid/signin.html:89
#, fuzzy
-msgid "Please enter your <span>user name and password</span>, then sign in"
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "Vui lòng nhập tên và mật khẩu"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "please sign-in"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
#, fuzzy
msgid "Login or email"
msgstr "Đăng nhập không thành công."
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
#, fuzzy
msgid "Password"
msgstr "New password created"
-#: skins/common/templates/authopenid/signin.html:106
-#, fuzzy
-msgid "Login"
-msgstr "User login"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "New password created"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "Last updated"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
#, fuzzy
msgid "delete"
msgstr "How to change my picture (gravatar) and what is gravatar?"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "Ask Your Question"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr "With the OpenID you don't need to create new username and password."
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr "You can safely re-use the same login for all OpenID-enabled websites."
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr ""
-"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-"
-"enabled."
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr "OpenID is based on an open standard, supported by many organizations."
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr ""
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr ""
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr ""
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
msgstr ""
@@ -4188,30 +4124,29 @@ msgstr ""
"><span class='grey'>(or select your OpenID provider above)</span>"
#: skins/common/templates/authopenid/signup_with_password.html:26
-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 "
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
"your login details with anyone and having to remember yet another password."
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:47
-#, fuzzy
-msgid "Create Account"
-msgstr "Signup"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr ""
@@ -4272,70 +4207,70 @@ msgstr ""
msgid "Delete These"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:5
+#: skins/common/templates/question/answer_controls.html:2
#, fuzzy
-msgid "answer permanent link"
-msgstr "link"
+msgid "swap with question"
+msgstr "Post Your Answer"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "link"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr ""
+
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
#, fuzzy
-msgid "edit"
-msgstr "Change Email"
+msgid "undelete"
+msgstr "How to change my picture (gravatar) and what is gravatar?"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "remove all flags"
+msgid "remove offensive flag"
msgstr "Tags"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+#, fuzzy
+msgid "remove flag"
+msgstr "Tags"
+
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr ""
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-#, fuzzy
-msgid "remove flag"
-msgstr "Tags"
-
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
#, fuzzy
-msgid "undelete"
-msgstr "How to change my picture (gravatar) and what is gravatar?"
-
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "Post Your Answer"
+msgid "edit"
+msgstr "Change Email"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
-msgid "mark this answer as correct (click again to undo)"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
msgstr ""
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
+#: skins/common/templates/question/answer_vote_buttons.html:8
+msgid "mark this answer as correct (click again to undo)"
msgstr ""
#: skins/common/templates/question/closed_question_info.html:2
@@ -4351,61 +4286,69 @@ msgid "close date %(closed_at)s"
msgstr ""
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr ""
-
-#: skins/common/templates/question/question_controls.html:13
#, fuzzy
msgid "reopen"
msgstr "You can safely re-use the same login for all OpenID-enabled websites."
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:22
+msgid ", one of these is required"
+msgstr ""
+
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "Tags"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr ""
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr ""
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "Tags"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr ""
#: skins/common/templates/widgets/tag_selector.html:4
#, fuzzy
msgid "Interesting tags"
msgstr "Tags"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
msgid "add"
msgstr ""
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
#, fuzzy
msgid "Ignored tags"
msgstr "Tags"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr ""
@@ -4455,7 +4398,7 @@ msgid "back to previous page"
msgstr ""
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
#, fuzzy
msgid "see all questions"
msgstr "Ask Your Question"
@@ -4488,11 +4431,6 @@ msgstr "Ask Your Question"
msgid "see tags"
msgstr "Tags"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
#, fuzzy
@@ -4524,18 +4462,20 @@ msgstr "Change Email"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr ""
#: skins/default/templates/ask.html:4
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
#, fuzzy
-msgid "Ask a question"
+msgid "Ask Your Question"
msgstr "Ask Your Question"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr ""
@@ -4555,8 +4495,8 @@ msgid "Badge \"%(name)s\""
msgstr ""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, fuzzy, python-format
msgid "%(description)s"
msgstr ""
@@ -4571,16 +4511,7 @@ msgid "user received this badge:"
msgid_plural "users received this badge:"
msgstr[0] ""
-#: skins/default/templates/badges.html:3
-#, fuzzy
-msgid "Badges summary"
-msgstr ""
-"When a question or answer is upvoted, the user who posted them will gain "
-"some points, which are called \"karma points\". These points serve as a "
-"rough measure of the community trust to him/her. Various moderation tasks "
-"are gradually assigned to the users based on those points."
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
#, fuzzy
msgid "Badges"
msgstr ""
@@ -4599,48 +4530,44 @@ msgstr ""
#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"Below is the list of available badges and number \n"
" of times each type of badge has been awarded. Have ideas about fun "
"badges? Please, give us your <a href='%(feedback_faq_url)s'>feedback</a>"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "Badge levels"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr ""
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr ""
-"Gold badge is the highest award in this community. To obtain it have to show "
+#: skins/default/templates/badges.html:41
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
"profound knowledge and ability in addition to your active participation."
+msgstr ""
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr ""
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr ""
-"Obtaining silver badge requires significant patience. If you have received "
-"one, that means you have greatly contributed to this community."
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr ""
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr ""
-"If you are an active participant in this community, you will be recognized "
-"with this badge."
-
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
#, fuzzy
msgid "Close question"
@@ -4659,11 +4586,10 @@ msgstr ""
msgid "OK to close"
msgstr ""
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4683,15 +4609,17 @@ msgid ""
msgstr ""
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"Before you ask - please make sure to search for a similar question. You can "
"search questions by their title or tags."
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "What kinds of questions should be avoided?"
#: skins/default/templates/faq_static.html:11
@@ -4707,14 +4635,11 @@ msgstr "What kinds of questions should be avoided?"
#: skins/default/templates/faq_static.html:14
msgid ""
-"is a Q&A site, not a discussion group. Therefore - please avoid having "
-"discussions in your answers, comment facility allows some space for brief "
-"discussions."
-msgstr ""
"is a <strong>question and answer</strong> site - <strong>it is not a "
"discussion group</strong>. Please avoid holding debates in your answers as "
"they tend to dilute the essense of questions and answers. For the brief "
"discussions please use commenting facility."
+msgstr ""
#: skins/default/templates/faq_static.html:15
#, fuzzy
@@ -4730,24 +4655,26 @@ msgid "This website is moderated by the users."
msgstr ""
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"Karma system allows users to earn rights to perform a variety of moderation "
"tasks"
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "How does karma system work?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr ""
+msgid ""
"When a question or answer is upvoted, the user who posted them will gain "
-"some points, which are called \"karma points\". These points serve as a "
+"some points, which are called \\\"karma points\\\". These points serve as a "
"rough measure of the community trust to him/her. Various moderation tasks "
"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -4768,59 +4695,53 @@ msgstr ""
msgid "upvote"
msgstr "votes"
-#: skins/default/templates/faq_static.html:37
-#, fuzzy
-msgid "use tags"
-msgstr "Tags"
-
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
#, fuzzy
msgid "add comments"
msgstr "post a comment"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
#, fuzzy
msgid "downvote"
msgstr "votes"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "Ask Your Question"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
#, fuzzy
msgid "open and close own questions"
msgstr "Ask Your Question"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
#, fuzzy
msgid "retag other's questions"
msgstr "Post Your Answer"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
#, fuzzy
msgid "edit community wiki questions"
msgstr "list of all questions"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "oldest"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "\"delete any comment"
+msgid "delete any comment"
msgstr "post a comment"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "How to change my picture (gravatar) and what is gravatar?"
-
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
msgstr ""
+
+#: skins/default/templates/faq_static.html:70
+msgid ""
"<p>The picture that appears on the users profiles is called "
"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
@@ -4834,51 +4755,52 @@ msgstr ""
"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
"be sure to use the same email address that you used to register with us). "
"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr ""
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
msgstr ""
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
#, fuzzy
msgid "\"Login now!\""
msgstr "Logout Now"
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr ""
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
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_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr ""
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
#, fuzzy
msgid "Still have questions?"
msgstr "Ask Your Question"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"Please <a href='%(ask_question_url)s'>ask</a> your question, help make our "
"community better!"
@@ -4934,6 +4856,68 @@ msgid ""
"Hello, this is a %(site_title)s forum feedback message.\n"
msgstr ""
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "Choose screen name"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5035,7 +5019,24 @@ msgstr ""
"Sincerely,\n"
"Q&A Forum Administrator"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr ""
@@ -5043,45 +5044,29 @@ msgstr ""
"containing <strong><span class=\"darkred\">%(searchtitle)s</span></strong></"
"p>"
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-msgid "i like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr ""
-#: skins/default/templates/macros.html:43
-msgid "i dont like this question (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr ""
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr ""
@@ -5089,127 +5074,109 @@ msgstr ""
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr ""
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
#, fuzzy
msgid "answered"
msgstr "oldest"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr ""
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
#, fuzzy
msgid "updated"
msgstr "Last updated"
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, fuzzy, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "Asked"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
#, fuzzy
msgid "delete this comment"
msgstr "post a comment"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "post a comment"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] ""
-
-#: skins/default/templates/macros.html:310
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] ""
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr ""
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "User login"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr ""
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr ""
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "page %(num)s"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr ""
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr ""
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, fuzzy, python-format
msgid "responses for %(username)s"
msgstr "Choose screen name"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] ""
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr ""
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr ""
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr ""
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr ""
@@ -5219,11 +5186,37 @@ msgstr ""
msgid "Questions"
msgstr "Tags"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
+#: skins/default/templates/question.html:110
+msgid "post a comment / <strong>some</strong> more"
+msgstr ""
+
+#: skins/default/templates/question.html:113
+msgid "see <strong>some</strong> more"
msgstr ""
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "post a comment"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+#, fuzzy
+msgid "Answer Your Own Question"
+msgstr "Post Your Answer"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "most voted"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "Login/Signup to Post"
+
#: skins/default/templates/question_edit.html:4
#: skins/default/templates/question_edit.html:9
#, fuzzy
@@ -5233,8 +5226,8 @@ msgstr "Post Your Answer"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
#, fuzzy
-msgid "Change tags"
-msgstr "Change Email"
+msgid "Retag question"
+msgstr "Ask Your Question"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -5291,6 +5284,13 @@ msgstr "Post Your Answer"
msgid "Reopen this question"
msgstr "Post Your Answer"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
#, fuzzy
@@ -5322,17 +5322,17 @@ msgstr ""
msgid "Subscribe"
msgstr "Tags"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr ""
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr ""
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
msgstr ""
@@ -5353,7 +5353,7 @@ msgstr ""
msgid "by popularity"
msgstr "tags"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr ""
@@ -5368,8 +5368,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "karma"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5401,7 +5403,7 @@ msgstr ""
msgid "Nothing found."
msgstr ""
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, fuzzy, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5417,43 +5419,43 @@ msgstr ""
msgid "Tagged"
msgstr ""
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
#, fuzzy
msgid "Search tips:"
msgstr "Tips"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
#, fuzzy
msgid "reset author"
msgstr "Send me a new password"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
msgid " or "
msgstr ""
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
#, fuzzy
msgid "reset tags"
msgstr "Tags"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr ""
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr ""
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
#, fuzzy
msgid "Search tip:"
msgstr "Tips"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr ""
@@ -5501,21 +5503,21 @@ msgstr ""
"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."
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr ""
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
#, fuzzy
msgid "Please, post your question!"
msgstr "Ask Your Question"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
#, fuzzy
msgid "subscribe to the questions feed"
msgstr "Post Your Answer"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5527,19 +5529,19 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] ""
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] ""
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5549,11 +5551,11 @@ msgstr ""
#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
@@ -5562,50 +5564,36 @@ msgstr[1] ""
"\n"
"(%(comment_count)s comments)"
+#: skins/default/templates/question/answer_tab_bar.html:11
+msgid "Sort by »"
+msgstr ""
+
#: skins/default/templates/question/answer_tab_bar.html:14
#, fuzzy
msgid "oldest answers will be shown first"
msgstr " "
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "oldest"
-
#: skins/default/templates/question/answer_tab_bar.html:17
#, fuzzy
msgid "newest answers will be shown first"
msgstr " "
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "newest"
-
#: skins/default/templates/question/answer_tab_bar.html:20
#, fuzzy
msgid "most voted answers will be shown first"
msgstr " "
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "most voted"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-#, fuzzy
-msgid "Answer Your Own Question"
-msgstr "Post Your Answer"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "Login/Signup to Post"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
#, fuzzy
msgid "Your answer"
msgstr "most voted"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
#, fuzzy
msgid "Be the first one to answer this question!"
msgstr ""
@@ -5616,43 +5604,34 @@ msgstr ""
"please <strong>don't forget to vote</strong> - it really helps to select the "
"best questions and answers!"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr ""
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
"<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/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:36
+msgid ""
"<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/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
+"not like)!"
msgstr ""
+
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
"<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/new_answer_form.html:43
-#, fuzzy
-msgid "Login/Signup to Post Your Answer"
-msgstr "Login/Signup to Post"
-
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "Post Your Answer"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5671,59 +5650,59 @@ msgid "email"
msgstr ""
"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "Tags"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "questions with most answers"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "Ask Your Question"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "Ask Your Question"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "questions with most answers"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "Ask Your Question"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "Last updated"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "Post Your Answer"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "Post Your Answer"
@@ -5733,58 +5712,45 @@ msgid "Stats"
msgstr ""
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "Asked"
+msgid "Asked"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "Seen"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr ""
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "Last updated"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
#, fuzzy
msgid "Related questions"
msgstr "Ask Your Question"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-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/subscribe_by_email_prompt.html:11
-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/subscribe_by_email_prompt.html:13
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
#, fuzzy
-msgid "Notify me immediately when there are any new answers"
+msgid "Email me when there are any new answers"
msgstr ""
"<strong>Notify me</strong> weekly when there are any new answers or updates"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, 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/subscribe_by_email_prompt.html:21
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
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/subscribe_by_email_prompt.html:12
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+
#: skins/default/templates/user_profile/user.html:12
#, fuzzy, python-format
msgid "%(username)s's profile"
@@ -5820,8 +5786,12 @@ msgstr ""
msgid "Screen Name"
msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+msgid "(cannot be changed)"
+msgstr ""
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
#, fuzzy
msgid "Update"
msgstr "Last updated"
@@ -5847,18 +5817,20 @@ msgstr ""
"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_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr ""
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "Stop Email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr ""
+"<strong>Your Email</strong> (<i>must be valid, never shown to others</i>)"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5887,19 +5859,23 @@ msgid "flagged items (%(flag_count)s)"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
#, fuzzy
msgid "seen"
msgstr "Last updated"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr ""
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
msgid "none"
msgstr ""
@@ -5917,6 +5893,16 @@ msgstr "Last updated"
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "Tags"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "How to change my picture (gravatar) and what is gravatar?"
+
#: skins/default/templates/user_profile/user_info.html:36
#, fuzzy
msgid "update profile"
@@ -5932,7 +5918,8 @@ msgid "real name"
msgstr ""
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "member since"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5942,7 +5929,7 @@ msgstr "Last updated"
#: skins/default/templates/user_profile/user_info.html:69
#, fuzzy
-msgid "user website"
+msgid "website"
msgstr "Welcome to Q&amp;A forum"
#: skins/default/templates/user_profile/user_info.html:75
@@ -6097,19 +6084,16 @@ msgid "%(username)s's network is empty"
msgstr "User login"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr ""
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr ""
@@ -6131,20 +6115,16 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Questions"
msgstr[0] ""
#: skins/default/templates/user_profile/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] ""
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "oldest"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr ""
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr ""
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6179,13 +6159,13 @@ msgid "<span class=\"count\">%(counter)s</span> Tag"
msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] ""
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
msgstr[0] ""
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "Tips"
@@ -6195,7 +6175,7 @@ msgstr "Tips"
msgid "User profile"
msgstr "User login"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr ""
@@ -6204,49 +6184,40 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "Graph of user karma"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "karma history"
-
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr ""
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
+#: skins/default/templates/user_profile/user_votes.html:4
+#, fuzzy
+msgid "votes"
msgstr "votes"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr ""
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr ""
-#: skins/default/templates/user_profile/user_votes.html:4
-#, fuzzy
-msgid "votes"
-msgstr "votes"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "Tips"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
#, fuzzy
-msgid "please make your answer relevant to this community"
+msgid "give an answer interesting to this community"
msgstr "ask a question interesting to this community"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6261,8 +6232,9 @@ msgstr ""
"best questions and answers!"
#: skins/default/templates/widgets/answer_edit_tips.html:12
+#: skins/default/templates/widgets/question_edit_tips.html:8
#, fuzzy
-msgid "please try to provide details"
+msgid "provide enough details"
msgstr "provide enough details"
#: skins/default/templates/widgets/answer_edit_tips.html:15
@@ -6278,7 +6250,8 @@ msgstr "ask a question interesting to this community"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Markdown basics"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6302,11 +6275,6 @@ msgid "**bold** or __bold__"
msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr ""
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6334,11 +6302,6 @@ msgstr "i-names không được hỗ trợ"
msgid "learn more about Markdown"
msgstr ""
-#: skins/default/templates/widgets/ask_button.html:2
-#, fuzzy
-msgid "ask a question"
-msgstr "Ask Your Question"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr ""
@@ -6348,26 +6311,25 @@ msgstr ""
"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."
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"<span class='strong big'>Looks like your email address, %(email)s has not "
+
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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>."
+"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/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "Login/Signup to Post"
-
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "Ask Your Question"
+"question will saved as pending meanwhile."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6383,10 +6345,15 @@ msgid "about"
msgstr ""
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr ""
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr ""
@@ -6412,18 +6379,11 @@ msgstr ""
"rough measure of the community trust to him/her. Various moderation tasks "
"are gradually assigned to the users based on those points."
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "Tips"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
+#, fuzzy
+msgid "ask a question interesting to this community"
msgstr "ask a question interesting to this community"
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "provide enough details"
-
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
msgid_plural "views"
@@ -6441,29 +6401,29 @@ msgid "vote"
msgid_plural "votes"
msgstr[0] "votes"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
#, fuzzy
msgid "see unanswered questions"
msgstr "unanswered"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "Ask Your Question"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "Ask Your Question"
@@ -6481,17 +6441,17 @@ msgstr ""
"rough measure of the community trust to him/her. Various moderation tasks "
"are gradually assigned to the users based on those points."
-#: skins/default/templates/widgets/user_navigation.html:8
+#: skins/default/templates/widgets/user_navigation.html:9
#, fuzzy
-msgid "logout"
+msgid "sign out"
msgstr "Logout Now"
-#: skins/default/templates/widgets/user_navigation.html:10
+#: skins/default/templates/widgets/user_navigation.html:12
#, fuzzy
-msgid "login"
-msgstr "User login"
+msgid "Hi, there! Please sign in"
+msgstr "please sign-in"
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
#, fuzzy
msgid "settings"
msgstr ""
@@ -6499,11 +6459,11 @@ msgstr ""
"user sessions. Cookies must be enabled in your browser so that forum can "
"work for you."
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
-msgstr "no"
+#: templatetags/extra_filters_jinja.py:279
+msgid "no"
+msgstr ""
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr ""
@@ -6521,7 +6481,8 @@ msgid "this field is required"
msgstr ""
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "Choose screen name"
#: utils/forms.py:69
@@ -6553,8 +6514,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "Your email <i>(never shared)</i>"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6568,17 +6529,13 @@ msgstr ""
msgid "this email is already used by someone else, please choose another"
msgstr ""
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "Password"
-
#: utils/forms.py:170
msgid "password is required"
msgstr ""
#: utils/forms.py:173
-msgid "retype password"
-msgstr "Password <i>(please retype)</i>"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6588,15 +6545,15 @@ msgstr ""
msgid "sorry, entered passwords did not match, please try again"
msgstr ""
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr ""
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr ""
-#: utils/functions.py:79
+#: utils/functions.py:87
#, fuzzy, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
@@ -6605,7 +6562,7 @@ msgstr[0] ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
msgstr[1] "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-#: utils/functions.py:85
+#: utils/functions.py:93
#, fuzzy, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
@@ -6614,6 +6571,37 @@ msgstr[0] ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
msgstr[1] "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6626,176 +6614,186 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr ""
+
+#: views/commands.py:112
#, fuzzy
-msgid "anonymous users cannot vote"
+msgid "Sorry, anonymous users cannot vote"
msgstr ""
"Sorry, your account appears to be suspended and you cannot make new posts "
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr ""
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr ""
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr ""
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr ""
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr ""
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
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:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr ""
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr ""
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "please sign-in"
+
+#: views/meta.py:37
+#, python-format
+msgid "About %(site)s"
+msgstr ""
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr ""
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr ""
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr ""
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr ""
+
+#: views/readers.py:133
#, fuzzy, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "One question"
msgstr[1] ""
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] ""
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr ""
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr ""
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr ""
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr ""
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr ""
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr ""
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr ""
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr ""
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "user karma"
+#: views/users.py:701
+msgid "user karma"
+msgstr ""
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "Profile - User's Karma"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr ""
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr ""
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr ""
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr ""
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr ""
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr ""
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr ""
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr ""
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr ""
-#: views/writers.py:192
-#, fuzzy
-msgid "Please log in to ask questions"
-msgstr ""
+#: views/writers.py:189
+msgid ""
"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
#, fuzzy
msgid "Please log in to answer questions"
msgstr ""
@@ -6806,14 +6804,14 @@ msgstr ""
"please <strong>don't forget to vote</strong> - it really helps to select the "
"best questions and answers!"
-#: views/writers.py:600
+#: views/writers.py:572
#, 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:649
+#: views/writers.py:589
#, fuzzy
msgid "Sorry, anonymous users cannot edit comments"
msgstr ""
@@ -6821,18 +6819,489 @@ msgstr ""
"until this issue is resolved. You can, however edit your existing posts. "
"Please contact the forum administrator to reach a resolution."
-#: views/writers.py:658
+#: views/writers.py:619
#, 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:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
#, fuzzy
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "Change your password"
+
+#~ msgid "question_answered"
+#~ msgstr "answered question"
+
+#~ msgid "question_commented"
+#~ msgstr "commented question"
+
+#~ msgid "Incorrect username."
+#~ msgstr "sorry, there is no such user name"
+
+#, fuzzy
+#~ 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>Dear %(name)s,</p></p>The following question has been updated on the "
+#~ "Q&A forum:</p>"
+#~ msgstr[1] ""
+#~ "<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated "
+#~ "on the Q&A forum:</p>"
+
+#, fuzzy
+#~ msgid ""
+#~ "go to %(email_settings_link)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 ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr "sorry, file uploading requires karma >%(min_rep)s"
+
+#, fuzzy
+#~ msgid "blocked users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot post"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#, fuzzy
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, your account appears to be blocked and you cannot make new posts "
+#~ "until this issue is resolved. Please contact the forum administrator to "
+#~ "reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#, fuzzy
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr ""
+#~ "Sorry, your account appears to be suspended and you cannot make new posts "
+#~ "until this issue is resolved. You can, however edit your existing posts. "
+#~ "Please contact the forum administrator to reach a resolution."
+
+#~ msgid "change %(email)s info"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Enter your new email into the box below</span> "
+#~ "if you'd like to use another email for <strong>update subscriptions</"
+#~ "strong>.<br>Currently you are using <strong>%(email)s</strong>"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<span class='strong big'>Please enter your email address in the box below."
+#~ "</span> Valid email address is required on this Q&amp;A forum. If you "
+#~ "like, you can <strong>receive updates</strong> on interesting questions "
+#~ "or entire forum via email. Also, your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. Email addresses are never shown or otherwise shared with anybody "
+#~ "else."
+
+#~ msgid "Your new Email"
+#~ msgstr ""
+#~ "<strong>Your new Email:</strong> (will <strong>not</strong> be shown to "
+#~ "anyone, must be valid)"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">An email with a validation link has been sent "
+#~ "to %(email)s.</span> Please <strong>follow the emailed link</strong> with "
+#~ "your web browser. Email validation is necessary to help insure the proper "
+#~ "use of email on <span class=\"orange\">Q&amp;A</span>. If you would like "
+#~ "to use <strong>another email</strong>, please <a "
+#~ "href='%(change_email_url)s'><strong>change it again</strong></a>."
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr ""
+#~ "<span class=\"strong big\">Your email address %(email)s has not been "
+#~ "changed.</span> If you decide to change it later - you can always do it "
+#~ "by editing it in your user profile or by using the <a "
+#~ "href='%(change_email_url)s'><strong>previous form</strong></a> again."
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr ""
+#~ "<span class='big strong'>Your email address is now set to %(email)s.</"
+#~ "span> Updates on the questions that you like most will be sent to this "
+#~ "address. Email notifications are sent once a day or less frequently - "
+#~ "only when there are any news."
+
+#~ msgid "thanks for verifying email"
+#~ msgstr ""
+#~ "<span class=\"big strong\">Thank you for verifying your email!</span> Now "
+#~ "you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+#~ "if you find a very interesting question you can <strong>subscribe for the "
+#~ "updates</strong> - then will be notified about changes <strong>once a "
+#~ "day</strong> or less frequently."
+
+#~ msgid "email key not sent"
+#~ msgstr "Validation email not sent"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr ""
+#~ "<span class='big strong'>Your current email address %(email)s has been "
+#~ "validated before</span> so the new key was not sent. You can <a "
+#~ "href='%(change_link)s'>change</a> email used for update subscriptions if "
+#~ "necessary."
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "%(provider)s login.</span> Please create your <strong>screen name</"
+#~ "strong> and save your <strong>email</strong> address. Saved email address "
+#~ "will let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "<p><span class='strong big'>Oops... looks like screen name %(username)s "
+#~ "is already used in another account.</span></p><p>Please choose another "
+#~ "screen name to use with your %(provider)s login. Also, a valid email "
+#~ "address is required on the <span class='orange'>Q&amp;A</span> forum. "
+#~ "Your email is used to create a unique <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for your "
+#~ "account. If you like, you can <strong>receive updates</strong> on the "
+#~ "interesting questions or entire forum by email. Email addresses are never "
+#~ "shown or otherwise shared with anybody else.</p>"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "%(provider)s login.</span></p><p>You can either keep your <strong>screen "
+#~ "name</strong> the same as your %(provider)s login name or choose some "
+#~ "other nickname.</p><p>Also, please save a valid <strong>email</strong> "
+#~ "address. With the email you can <strong>subscribe for the updates</"
+#~ "strong> on the most interesting questions. Email address is also used to "
+#~ "create and retrieve your unique avatar image - <a "
+#~ "href='%(gravatar_faq_url)s'><strong>gravatar</strong></a>.</p>"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr ""
+#~ "<p><span class=\"big strong\">You are here for the first time with your "
+#~ "Facebook login.</span> Please create your <strong>screen name</strong> "
+#~ "and save your <strong>email</strong> address. Saved email address will "
+#~ "let you <strong>subscribe for the updates</strong> on the most "
+#~ "interesting questions and will be used to create and retrieve your unique "
+#~ "avatar image - <a href='%(gravatar_faq_url)s'><strong>gravatar</strong></"
+#~ "a>.</p>"
+
+#~ msgid "Screen name label"
+#~ msgstr "<strong>Screen Name</strong> (<i>will be shown to others</i>)"
+
+#~ msgid "Email address label"
+#~ msgstr ""
+#~ "<strong>Email Address</strong> (<i>will <strong>not</strong> be shared "
+#~ "with anyone, must be valid</i>)"
+
+#~ 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."
+
+#~ msgid "create account"
+#~ msgstr "Signup"
+
+#, fuzzy
+#~ msgid "Login"
+#~ msgstr "User login"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "With the OpenID you don't need to create new username and password."
+
+#~ msgid "reuse openid"
+#~ msgstr ""
+#~ "You can safely re-use the same login for all OpenID-enabled websites."
+
+#~ msgid "openid is widely adopted"
+#~ msgstr ""
+#~ "There are > 160,000,000 OpenID account in use. Over 10,000 sites are "
+#~ "OpenID-enabled."
+
+#~ msgid "openid is supported open standard"
+#~ msgstr ""
+#~ "OpenID is based on an open standard, supported by many organizations."
+
+#~ 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."
+
+#, fuzzy
+#~ msgid "Create Account"
+#~ msgstr "Signup"
+
+#, fuzzy
+#~ msgid "answer permanent link"
+#~ msgstr "link"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "Tags"
+
+#~ msgid "Related tags"
+#~ msgstr "Tags"
+
+#, fuzzy
+#~ msgid "Ask a question"
+#~ msgstr "Ask Your Question"
+
+#, fuzzy
+#~ msgid "Badges summary"
+#~ msgstr ""
+#~ "When a question or answer is upvoted, the user who posted them will gain "
+#~ "some points, which are called \"karma points\". These points serve as a "
+#~ "rough measure of the community trust to him/her. Various moderation tasks "
+#~ "are gradually assigned to the users based on those points."
+
+#~ msgid "gold badge description"
+#~ msgstr ""
+#~ "Gold badge is the highest award in this community. To obtain it have to "
+#~ "show profound knowledge and ability in addition to your active "
+#~ "participation."
+
+#~ msgid "silver badge description"
+#~ msgstr ""
+#~ "Obtaining silver badge requires significant patience. If you have "
+#~ "received one, that means you have greatly contributed to this community."
+
+#~ msgid "bronze badge description"
+#~ msgstr ""
+#~ "If you are an active participant in this community, you will be "
+#~ "recognized with this badge."
+
+#~ msgid ""
+#~ "is a Q&A site, not a discussion group. Therefore - please avoid having "
+#~ "discussions in your answers, comment facility allows some space for brief "
+#~ "discussions."
+#~ msgstr ""
+#~ "is a <strong>question and answer</strong> site - <strong>it is not a "
+#~ "discussion group</strong>. Please avoid holding debates in your answers "
+#~ "as they tend to dilute the essense of questions and answers. For the "
+#~ "brief discussions please use commenting facility."
+
+#~ msgid "Rep system summary"
+#~ msgstr ""
+#~ "When a question or answer is upvoted, the user who posted them will gain "
+#~ "some points, which are called \"karma points\". These points serve as a "
+#~ "rough measure of the community trust to him/her. Various moderation tasks "
+#~ "are gradually assigned to the users based on those points."
+
+#, fuzzy
+#~ msgid "use tags"
+#~ msgstr "Tags"
+
+#~ msgid "what is gravatar"
+#~ msgstr "How to change my picture (gravatar) and what is gravatar?"
+
+#~ msgid "gravatar faq info"
+#~ msgstr ""
+#~ "<p>The picture that appears on the users profiles is called "
+#~ "<strong>gravatar</strong> (which means <strong>g</strong>lobally "
+#~ "<strong>r</strong>ecognized <strong>avatar</strong>).</p><p>Here is how "
+#~ "it works: a <strong>cryptographic key</strong> (unbreakable code) is "
+#~ "calculated from your email address. You upload your picture (or your "
+#~ "favorite alter ego image) the website <a href='http://gravatar."
+#~ "com'><strong>gravatar.com</strong></a> from where we later retreive your "
+#~ "image using the key.</p><p>This way all the websites you trust can show "
+#~ "your image next to your posts and your email address remains private.</"
+#~ "p><p>Please <strong>personalize your account</strong> with an image - "
+#~ "just register at <a href='http://gravatar.com'><strong>gravatar.com</"
+#~ "strong></a> (just please be sure to use the same email address that you "
+#~ "used to register with us). Default image that looks like a kitchen tile "
+#~ "is generated automatically.</p>"
+
+#, fuzzy
+#~ msgid "Change tags"
+#~ msgstr "Change Email"
+
+#~ msgid "reputation"
+#~ msgstr "karma"
+
+#~ msgid "oldest answers"
+#~ msgstr "oldest"
+
+#~ msgid "newest answers"
+#~ msgstr "newest"
+
+#~ msgid "popular answers"
+#~ msgstr "most voted"
+
+#~ 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)!"
+
+#~ 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)! "
+
+#~ 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!"
+
+#, fuzzy
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "Login/Signup to Post"
+
+#~ msgid "Answer the question"
+#~ msgstr "Post Your Answer"
+
+#~ msgid "question asked"
+#~ msgstr "Asked"
+
+#~ msgid "question was seen"
+#~ msgstr "Seen"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr ""
+#~ "<strong>Notify me</strong> weekly when there are any new answers or "
+#~ "updates"
+
+#~ 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)"
+
+#~ 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."
+
+#~ msgid "Stop sending email"
+#~ msgstr "Stop Email"
+
+#~ msgid "reputation history"
+#~ msgstr "karma history"
+
+#~ msgid "casted votes"
+#~ msgstr "votes"
+
+#~ msgid "answer tips"
+#~ msgstr "Tips"
+
+#, fuzzy
+#~ msgid "please try to provide details"
+#~ msgstr "provide enough details"
+
+#, fuzzy
+#~ msgid "ask a question"
+#~ msgstr "Ask Your Question"
+
+#~ 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. "
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "Login/Signup to Post"
+
+#~ msgid "question tips"
+#~ msgstr "Tips"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "ask a question interesting to this community"
+
+#, fuzzy
+#~ msgid "logout"
+#~ msgstr "Logout Now"
+
+#, fuzzy
+#~ msgid "login"
+#~ msgstr "User login"
+
+#~ msgid "no items in counter"
+#~ msgstr "no"
+
+#~ msgid "your email address"
+#~ msgstr "Your email <i>(never shared)</i>"
+
+#~ msgid "choose password"
+#~ msgstr "Password"
+
+#~ msgid "retype password"
+#~ msgstr "Password <i>(please retype)</i>"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "user karma"
+
+#, fuzzy
+#~ msgid "Please log in to ask questions"
+#~ 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."
+
+#, fuzzy
#~ msgid ""
#~ "\n"
#~ " %(counter)s Answer:\n"
@@ -6851,10 +7320,6 @@ msgstr ""
#~ msgid "Question tags"
#~ msgstr "Tags"
-#, fuzzy
-#~ msgid "questions"
-#~ msgstr "Tips"
-
#~ msgid "Email verification subject line"
#~ msgstr "Verification Email from Q&A forum"
diff --git a/askbot/locale/vi/LC_MESSAGES/djangojs.po b/askbot/locale/vi/LC_MESSAGES/djangojs.po
index bbe3a99e..afeb4aa3 100644
--- a/askbot/locale/vi/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/vi/LC_MESSAGES/djangojs.po
@@ -4,9 +4,9 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: askbot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:55-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,146 +75,76 @@ msgstr ""
msgid "loading..."
msgstr ""
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr ""
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr ""
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr ""
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr ""
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr ""
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr ""
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr ""
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr ""
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+msgid "please confirm removal of offensive flag"
+msgstr ""
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr ""
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr ""
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr ""
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr ""
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr ""
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr ""
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr ""
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr ""
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr ""
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr ""
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -231,114 +161,110 @@ msgstr[0] ""
"#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
msgstr[1] "#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] ""
+"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+"#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
+msgstr[1] "#-#-#-#-# djangojs.po (PACKAGE VERSION) #-#-#-#-#\n"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr ""
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
diff --git a/askbot/locale/zh_CN/LC_MESSAGES/django.po b/askbot/locale/zh_CN/LC_MESSAGES/django.po
index 417555d0..5b147ddb 100644
--- a/askbot/locale/zh_CN/LC_MESSAGES/django.po
+++ b/askbot/locale/zh_CN/LC_MESSAGES/django.po
@@ -2,13 +2,13 @@
# Copyright (C) 2009 Gang Chen
# This file is distributed under the same license as the CNPROG package.
# Evgeny Fadeev <evgeny.fadeev@gmail.com>, 2009.
-#translators: suyu8776@gmail.com
-#Dean Lee xslidian@gmail.com
+# translators: suyu8776@gmail.com
+# Dean Lee xslidian@gmail.com
msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:57-0500\n"
"PO-Revision-Date: 2012-01-25 02:11+0800\n"
"Last-Translator: Dean Lee <xslidian@gmail.com>\n"
"Language-Team: ChS <xslidian@lidian.info>\n"
@@ -24,15 +24,15 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "对不起,匿名用户不能使用此功能"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr "-"
-#: feed.py:26
+#: feed.py:28
msgid "Individual question feed"
msgstr "单条问题订阅"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "最新问题"
@@ -59,23 +59,32 @@ msgstr "标题"
msgid "please enter a descriptive title for your question"
msgstr "请输入对问题具有描述性质的标题 - “帮忙!紧急求助!”是不建议的标题。"
-#: forms.py:111
+#: forms.py:113
#, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "标题必须多于 %d 个字符"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "内容"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "标签"
-#: forms.py:168
+#: forms.py:188
#, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -85,46 +94,47 @@ msgid_plural ""
"be used."
msgstr[0] "标签为不带空格的关键字。最多可以使用 %(max_tags)d 个标签。"
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr " 标签不能为空。"
-#: forms.py:210
+#: forms.py:232
#, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "最多只能有%(tag_count)d个标签"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr "至少必填下述标签之一:%(tags)s"
-#: forms.py:227
+#: forms.py:249
#, 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] "标签最多只能有%(max_chars)d个字符"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr "在标签中使用这些字符"
+#: forms.py:258
+#, fuzzy
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr "标签请使用英文字母,中文或者数字字符串(. - _ # 也可以)"
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr "社区 wiki(无积分奖励,很多其他用户也能编辑 wiki 文章)"
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
msgstr "选择社区wiki模式,问答不计算积分,签名也不显示作者信息"
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "更新概要:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -132,122 +142,127 @@ msgstr ""
"输入本次修改的简单概述(如:修改了别字,修正了语法,改进了样式等。非必填"
"项。)"
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr "输入要添加或减去的分数"
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr "已认证"
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr "查看"
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
msgid "suspended"
msgstr "暂停使用"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr "冻结"
-#: forms.py:383
+#: forms.py:405
msgid "administrator"
msgstr "管理员"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr "版主"
-#: forms.py:404
+#: forms.py:426
msgid "Change status to"
msgstr "修改状态为"
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr "哪个?"
-#: forms.py:452
+#: forms.py:474
msgid "Cannot change own status"
msgstr "不能修改自己的状态"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr "不能把其他用户转为版主"
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr "不能修改其他版主的状态"
-#: forms.py:471
+#: forms.py:493
msgid "Cannot change status to admin"
msgstr "不能修改管理员的状态"
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr "如果你希望修改 %(username)s 的状态,请做出有意义的选择。"
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr "主题"
-#: forms.py:493
+#: forms.py:515
msgid "Message text"
msgstr "信息文本"
-#: forms.py:579
+#: forms.py:530
msgid "Your name (optional):"
msgstr "名字 (可选):"
-#: forms.py:580
+#: forms.py:531
msgid "Email:"
msgstr "电子邮箱:"
-#: forms.py:582
+#: forms.py:533
msgid "Your message:"
msgstr "你的信息:"
# 100%
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr "我不想给出电子邮箱地址或接收回应:"
# 100%
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr "请标记“我不想给出邮箱地址”字段。"
-#: forms.py:648
+#: forms.py:599
msgid "ask anonymously"
msgstr "匿名提问"
# 100%
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr "若您不想在提问此问题时公布自己的名字,请选中本项"
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr "您已匿名提问,若决定公开身份,请选中此复选框。"
# 100%
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr "公布身份"
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr "抱歉,只有匿名问题的所有者可以公开其身份,请取消选中复选框"
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
@@ -256,136 +271,156 @@ msgstr ""
"抱歉,似乎规则已有变化——不再允许匿名提问。请选中“公开身份”复选框或重新加载本"
"页面并再次尝试编辑问题。"
-#: forms.py:923
-msgid "this email will be linked to gravatar"
-msgstr "电子邮箱地址将与 gravatar 关联"
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "真实姓名"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "个人网站"
# 100%
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr "城市"
-#: forms.py:953
+#: forms.py:911
msgid "Show country"
msgstr "显示国家"
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "生日"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "不会公开,只会显示您的年龄,格式为:YYYY-MM-DD"
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "个人简介"
-#: forms.py:974
+#: forms.py:932
msgid "Screen name"
msgstr "昵称"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "该电子邮件已被注册,请选择另一个再试。"
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "选择邮件标签过来"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "我的提问"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "我的回答"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "个人选项"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "整个论坛(标签过滤)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr "留言并提交我"
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "请从以上选项中选择一项"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "试一试"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "不需要邮件,谢谢"
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "请从以上选项中选择一项"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
# footer.html
-#: urls.py:52
+#: urls.py:41
msgid "about/"
msgstr "关于本站/"
-#: urls.py:53
+#: urls.py:42
msgid "faq/"
msgstr "常见问题/"
-#: urls.py:54
+#: urls.py:43
msgid "privacy/"
msgstr "隐私政策/"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
msgid "answers/"
msgstr "回答/"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
msgid "edit/"
msgstr "编辑/"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
msgid "revisions/"
msgstr "版本/"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+msgid "questions"
+msgstr "问题"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
msgid "questions/"
msgstr "问题/"
-#: urls.py:77
+#: urls.py:82
msgid "ask/"
msgstr "提问/"
-#: urls.py:87
+#: urls.py:92
msgid "retag/"
msgstr "修改标签/"
-#: urls.py:92
+#: urls.py:97
msgid "close/"
msgstr "关闭/"
-#: urls.py:97
+#: urls.py:102
msgid "reopen/"
msgstr "打开/"
-#: urls.py:102
+#: urls.py:107
msgid "answer/"
msgstr "回答/"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
#, fuzzy
msgid "vote/"
msgstr ""
@@ -394,60 +429,55 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"投票/"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr "小工具/"
-#: urls.py:153
+#: urls.py:158
msgid "tags/"
msgstr "标签/"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr "订阅标签/"
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
msgid "users/"
msgstr "用户/"
-#: urls.py:214
+#: urls.py:219
msgid "subscriptions/"
msgstr "订阅/"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr "用户/自定义头像更新/"
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
msgid "badges/"
msgstr "奖牌榜/"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr "信息/"
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr "标记已读/"
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr "上传/"
-#: urls.py:258
+#: urls.py:263
msgid "feedback/"
msgstr "问题反馈/"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
msgid "question/"
msgstr "提问/"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
msgid "account/"
msgstr "账户/"
@@ -579,65 +609,70 @@ msgstr ""
"值。"
#: conf/email.py:38
+#, fuzzy
+msgid "Enable email alerts"
+msgstr "邮件及邮件提醒设置"
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr "邮件提醒的最大新问题数"
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr "默认所有问题通知频率"
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr "本选项可定义发送更新邮件的频率:所有提问。"
-#: conf/email.py:62
+#: conf/email.py:71
msgid "Default notification frequency questions asked by the user"
msgstr "默认用户提问通知频率"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr "本选项可定义发送更新邮件的频率:用户提问。"
-#: conf/email.py:76
+#: conf/email.py:85
msgid "Default notification frequency questions answered by the user"
msgstr "默认用户回答问题通知频率"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr "本选项可定义发送更新邮件的频率:用户回答问题。"
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr "默认用户选择问题通知频率"
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr "本选项可定义发送更新邮件的频率:用户选择问题。"
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr "默认提及与评论通知频率"
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr "本选项可定义发送更新邮件的频率:提及与评论。"
-#: conf/email.py:119
+#: conf/email.py:128
msgid "Send periodic reminders about unanswered questions"
msgstr "发送未回答问题定期提醒邮件"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
@@ -646,25 +681,25 @@ msgstr ""
"注意: 使用本功能需运行管理命令“send_unanswered_question_reminders”(如通过 "
"cron 任务——以适当频率)"
-#: conf/email.py:134
+#: conf/email.py:143
msgid "Days before starting to send reminders about unanswered questions"
msgstr "开始发送未回答问题提醒邮件之前的天数"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr "发送未回答问题提醒邮件的间隔时间。"
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr "发送无回答提问提醒邮件的最大数量"
-#: conf/email.py:168
+#: conf/email.py:177
msgid "Send periodic reminders to accept the best answer"
msgstr "定期发送接受最佳回答的提醒邮件"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
@@ -674,56 +709,56 @@ msgstr ""
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
-#: conf/email.py:183
+#: conf/email.py:192
msgid "Days before starting to send reminders to accept an answer"
msgstr "发送接受最佳回答提醒邮件前的天数"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr "发送接受回答提醒的间隔天数。"
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr "发送接收最佳答案的提醒邮件的最大数量"
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr "在提交前需要邮件确认"
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr "通过发送确认邮件完成邮件激活确认"
-#: conf/email.py:228
+#: conf/email.py:237
msgid "Allow only one account per email address"
msgstr "每个邮件地址只允许关联一个账户"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr "匿名用户邮件"
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr "使用这个设置没有邮件的用户图像"
-#: conf/email.py:247
+#: conf/email.py:256
msgid "Allow posting questions by email"
msgstr "允许邮件提问"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr "启用本设置前 - 请在 settings.py 文件中填写 IMAP 设置"
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr "以破折号替代所发送邮件中标签中的空格"
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
@@ -731,6 +766,25 @@ msgstr ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "允许邮件提问"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr "外部服务 key"
@@ -745,8 +799,7 @@ msgid ""
"This key helps google index your site please obtain is at <a href=\"%(url)s?"
"hl=%(lang)s\">google webmasters tools site</a>"
msgstr ""
-"请插入<a href=\"%(url)s?hl=%(lang)s\">google webmasters tools "
-"site</a>\n"
+"请插入<a href=\"%(url)s?hl=%(lang)s\">google webmasters tools site</a>\n"
"以帮助google索引你的网站"
#: conf/external_keys.py:36
@@ -759,22 +812,22 @@ msgid ""
"Obtain is at <a href=\"%(url)s\">Google Analytics</a> site, if you wish to "
"use Google Analytics to monitor your site"
msgstr ""
-"如果你希望使用Google Analytics监控你的网站,请在这里设置 <a href="
-"\"%(url)s\">Google Analytics</a>"
+"如果你希望使用Google Analytics监控你的网站,请在这里设置 <a href=\"%(url)s"
+"\">Google Analytics</a>"
#: conf/external_keys.py:51
msgid "Enable recaptcha (keys below are required)"
msgstr "激活recaptcha(下面的keys是必须的)"
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr "Recaptcha public key"
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr "Recaptcha private key"
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -784,11 +837,11 @@ msgstr ""
"Recaptcha这个工具帮助我们辨别出垃圾邮件中的真实用户,\n"
"请从这里获取public key <a href=\"%(url)s\">recaptcha.net</a>"
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr "Facebook public API key"
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -799,15 +852,15 @@ msgstr ""
"上登录\n"
"获取这些,通过<a href=\"%(url)s\">facebook create app</a> 网站"
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr "Facebook secret key"
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
msgid "Twitter consumer key"
msgstr "Twitter consumer key"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, fuzzy, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
@@ -816,15 +869,15 @@ msgstr ""
"请在这里注册你的网站 <a href=\"http://dev.twitter.com/apps/\">twitter "
"applications site</a>"
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr "Twitter consumer secret"
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr "LinkedIn consumer key"
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, fuzzy, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
@@ -832,15 +885,15 @@ msgstr ""
"请在这里注册你的网站 <a href=\"http://dev.twitter.com/apps/\">twitter "
"applications site</a>"
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr "LinkedIn consumer secret"
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
msgid "ident.ca consumer key"
msgstr "ident.ca 客户 key"
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, fuzzy, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
@@ -849,26 +902,10 @@ msgstr ""
"请在这里注册你的网站 <a href=\"http://dev.twitter.com/apps/\">twitter "
"applications site</a>"
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr "ident.ca 客户 secret"
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr "为使用密码登录的用户进行LDAP验证"
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr "LDAP服务提供商"
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr "LDAP服务URL"
-
-#: conf/external_keys.py:193
-msgid "Explain how to change LDAP password"
-msgstr "如何修改LDAP密码"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr "关于,隐私政策等"
@@ -913,11 +950,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr "数据条目与显示规则"
-#: conf/forum_data_rules.py:22
-#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
+#, fuzzy, python-format
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr "启用视频嵌入。<em>注: 请先 <a href=\"%(url)s>读我</a>。</em>"
#: conf/forum_data_rules.py:33
@@ -981,10 +1020,15 @@ msgid "Minimum length of answer body (number of characters)"
msgstr "回答正文最小长度 (字符数)"
#: conf/forum_data_rules.py:126
+#, fuzzy
+msgid "Are tags required?"
+msgstr " 标签不能为空。"
+
+#: conf/forum_data_rules.py:135
msgid "Mandatory tags"
msgstr "必需标签"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
@@ -992,11 +1036,11 @@ msgstr ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr "强制小写字母标签"
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
@@ -1006,21 +1050,21 @@ msgstr ""
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr "标签列表格式"
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
msgid "Use wildcard tags"
msgstr "使用通配符标签"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
@@ -1028,48 +1072,48 @@ msgstr ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr "默认显示最大留言数"
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr "最大留言长度,必须小于%(max_len)s"
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr "限制编辑评论的时间"
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr "如果取消选中,将无编辑评论时间限制"
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr "允许编辑评论的分钟数"
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr "要启用本设置,请选中前一个设置"
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr "按“回车”键保存评论"
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr "搜索最小长度"
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr "必须匹配相关数据库设置"
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr "不要固定搜索文本请求"
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
@@ -1079,20 +1123,82 @@ msgstr ""
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr "每个问题的最多标签数"
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
msgid "Number of questions to list by default"
msgstr "默认显示的问题数"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
msgid "What should \"unanswered question\" mean?"
msgstr "\"未回答\"问题是什么?"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr "为使用密码登录的用户进行LDAP验证"
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+#, fuzzy
+msgid "LDAP Server USERID field name"
+msgstr "LDAP服务提供商"
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+#, fuzzy
+msgid "LDAP Server EMAIL field name"
+msgstr "LDAP服务提供商"
+
+# 100%
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "主页侧边栏"
+
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "用户个人档案侧边栏"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+#, fuzzy
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+"Use this area to enter content at the TOP of the sidebarin HTML format. "
+"When using this option (as well as the sidebar footer), please use the HTML "
+"validation service to make sure that your input is valid and works well in "
+"all browsers."
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+#, fuzzy
+msgid "Content License"
msgstr "内容授权许可"
#: conf/license.py:21
@@ -1179,16 +1285,16 @@ msgid ""
msgstr "要启用,请转到 设置->撰写->远程发布 并选中 XML-RPC 的复选框"
# 100%
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr "上传图标"
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr "你的%(provider)s登录成功"
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1383,6 +1489,10 @@ msgstr ""
"When a search engine crawler will see a rel=nofollow attribute on a link - "
"the link will not count towards the rank of the users personal site."
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr "积分增减规则"
@@ -1611,28 +1721,28 @@ msgstr "为搜索引擎添加的网站描述"
msgid "Short name for your Q&A forum"
msgstr "网站缩写"
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr "网站根地址,必须以http或https开头"
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr "启用匿名用户问候"
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr "对匿名用户显示的问候语"
# 100%
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr "使用 HTML 格式化信息"
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
msgid "Feedback site URL"
msgstr "问题反馈URL"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr "如果留空,一个简单的内部反馈将被发送"
@@ -1759,11 +1869,11 @@ msgid "To change the logo, select new file, then submit this whole form."
msgstr "改logo,选择一个新文件并提交"
# 100%
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr "显示 logo"
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
@@ -1771,11 +1881,11 @@ msgstr ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr "网站favicon"
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1785,21 +1895,21 @@ msgstr ""
"16x16 或 32x32像素icon图片用于区分你网站的浏览器用户接口。请查看更多favicon信"
"息在<a href=\"%(favicon_info_url)s\">this page</a>."
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr "密码登录按钮"
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr "88x38像素的图片被用于登录界面的密码登录按钮"
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr "显示所有UI功能给所有用户"
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
msgid ""
"If checked, all forum functions will be shown to users, regardless of their "
"reputation. However to use those functions, moderation rules, reputation and "
@@ -1808,21 +1918,21 @@ msgstr ""
"如果选择了,所有的网站功能将被展示给用户,不管他们的积分是多少.尽管使用了这些功"
"能,适度规则,积分和其他限制仍然有作用."
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
msgid "Select skin"
msgstr "选择主题"
# 100%
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr "自定义 HTML <HEAD>"
# 100%
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr "自定义 HTML <HEAD> 部分"
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1843,11 +1953,11 @@ msgstr ""
"please test the site with the W3C HTML validator service."
# 100%
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr "自定义头部增加内容"
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1862,11 +1972,11 @@ msgstr ""
"sure that your input is valid and works well in all browsers."
# 100%
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr "网站底部模式"
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
@@ -1875,11 +1985,11 @@ msgstr ""
"You can disable, customize, or use the default footer."
# 100%
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr "自定义底部(HTML 格式)"
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1894,11 +2004,11 @@ msgstr ""
"that your input is valid and works well in all browsers."
# 100%
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr "应用自定义样式表(CSS)"
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
@@ -1907,11 +2017,11 @@ msgstr ""
"sheet rules (please see the next item)"
# 100%
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr "自定义样式表(CSS)"
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1926,21 +2036,21 @@ msgstr ""
"depends (default is empty string) on the url configuration in your urls.py."
# 100%
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr "添加自定义 javascript"
# 100%
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr "点击可启用可在下一字段输入的 javascript"
# 100%
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr "自定义 javascript"
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1958,22 +2068,22 @@ msgstr ""
"enable your custom code</strong>, check \"Add custom javascript\" option "
"above)."
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr "主题修正数字"
# 100%
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr "将自定设置但如果需要您可以修改。"
# 100%
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr "自动更新媒体版本号所用 hash。"
# 100%
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr "将自动设置,不必手动修改。"
@@ -2044,32 +2154,62 @@ msgstr "外部服务"
msgid "Login, Users & Communication"
msgstr "登录、用户与交流"
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
msgid "User settings"
msgstr "用户设置"
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr "允许修改用户昵称"
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "每个邮件地址只允许关联一个账户"
+
+#: conf/user_settings.py:41
msgid "Allow account recovery by email"
msgstr "允许账户邮件恢复"
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr "允许添加与移除登录方式"
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr "用户昵称允许的最小长度"
# 100%
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+#, fuzzy
+msgid "Default avatar for users"
+msgstr "默认 Gravatar 图标类型"
+
+#: conf/user_settings.py:70
+#, fuzzy
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr "改logo,选择一个新文件并提交"
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+# 100%
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr "默认 Gravatar 图标类型"
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
@@ -2079,7 +2219,7 @@ msgstr ""
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr "匿名用户名称"
@@ -2195,331 +2335,344 @@ msgstr "垃圾广告"
msgid "too localized"
msgstr "太地域化"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "最新问题"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "按最早加入"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "活跃"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "不活跃"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "热门问题"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "最酷"
# "最有价值问题"
# "最新问题"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "最有价值的问题"
# "最有价值问题"
# "最新问题"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "投票最少"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "相关"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "所有"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "未回答"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "收藏"
-#: const/__init__.py:64
+#: const/__init__.py:70
msgid "list"
msgstr "列表"
# 100%
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr "云"
-#: const/__init__.py:78
+#: const/__init__.py:79
msgid "Question has no answers"
msgstr "未回答的问题"
-#: const/__init__.py:79
+#: const/__init__.py:80
msgid "Question has no accepted answers"
msgstr "仍没有正确答案的问题"
-#: const/__init__.py:122
+#: const/__init__.py:125
msgid "asked a question"
msgstr "我要提问"
-#: const/__init__.py:123
+#: const/__init__.py:126
msgid "answered a question"
msgstr "回答问题"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "评论问题"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "评论回答"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "修改问题"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "修改回答"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "获奖"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "标记最佳答案"
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "投赞成票"
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "投反对票"
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "撤销投票"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "删除问题"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "删除回答"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "标记垃圾帖"
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "更新标签"
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "收藏"
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "完成个人所有资料"
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "发送邮件更新"
-#: const/__init__.py:142
+#: const/__init__.py:145
msgid "reminder about unanswered questions sent"
msgstr "已发送未回答问题提醒邮件"
-#: const/__init__.py:146
+#: const/__init__.py:149
msgid "reminder about accepting the best answer sent"
msgstr "已发送接受最佳答案提醒邮件"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr "发布提醒"
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr "回答的问题"
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr "留言的问题"
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr "留言的回答"
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr "已接受的回答"
+#, fuzzy
+msgid "answered question"
+msgstr "回答问题"
+
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "修改回答"
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[已关闭]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[已删除]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "初始版本"
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "更新了标签"
# 100%
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr "关"
-#: const/__init__.py:218
+#: const/__init__.py:221
msgid "exclude ignored"
msgstr "排除忽略标签"
-#: const/__init__.py:219
+#: const/__init__.py:222
msgid "only selected"
msgstr "仅选中"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr "立即"
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "每日"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "每周"
-#: const/__init__.py:226
+#: const/__init__.py:229
msgid "no email"
msgstr "没有邮件"
# 100%
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr "identicon"
-#: const/__init__.py:234
+#: const/__init__.py:237
msgid "mystery-man"
msgstr "神秘人"
# 100%
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr "monsterid"
-#: const/__init__.py:236
+#: const/__init__.py:239
msgid "wavatar"
msgstr "wavatar"
# 100%
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr "retro"
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "金牌"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "银牌"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "铜牌"
# 100%
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr "无"
-#: const/__init__.py:299
+#: const/__init__.py:302
msgid "Gravatar"
msgstr "Gravatar"
# 100%
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr "已上传头像"
-#: const/message_keys.py:15
+#: const/message_keys.py:21
msgid "most relevant questions"
msgstr "最相关问题"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
msgid "click to see most relevant questions"
msgstr "点击查看最相关问题"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
msgid "by relevance"
msgstr "按相关性"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "最新问题"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
msgid "by date"
msgstr "按日期"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "最新问题"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "最近被更新的问题"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
msgid "by activity"
msgstr "按活跃程度"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "最近被更新的问题"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
msgid "click to see the least answered questions"
msgstr "点击查看回答数最少的问题"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
msgid "by answers"
msgstr "按回答数"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
msgid "click to see the most answered questions"
msgstr "点击查看回答数最多的问题"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
msgid "click to see least voted questions"
msgstr "投票次数最多的问题"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
msgid "by votes"
msgstr "按票数"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "投票次数最多的问题"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
@@ -2527,7 +2680,7 @@ msgstr ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr "支持基本的HTML标签"
@@ -2576,11 +2729,12 @@ msgid "Your user name (<i>required</i>)"
msgstr "用户名是必需项"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "选择一个用户名"
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "对不起,没有用户使用这个名称"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr "登录/"
@@ -2618,7 +2772,7 @@ msgid "%(site)s user name and password"
msgstr "使用%(site)s 帐号密码登录"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr "创建一个密码保护账户"
@@ -2704,77 +2858,77 @@ msgstr "使用%(provider)s帐号密码登录"
msgid "Sign in with your %(provider)s account"
msgstr "用你的%(provider)s 账户登录"
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID %(openid_url)s是不正确的"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr "很不幸,当链接%(provider)s时出现一些问题,请重试或使用其他的服务"
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
msgid "Your new password saved"
msgstr "你的新密码已保存"
# 100%
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr "登陆密码组合不正确"
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr "请点击下面任何一个图标登录"
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
msgid "Account recovery email sent"
msgstr "发送账户恢复邮件"
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr "请添加一个或多个登录方式"
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr "您可以添加,删除或重新验证你的登录方式"
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr "请稍等,你的账户正在恢复..."
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr "对不起,这个账户恢复已过期或不正确"
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr "%(provider_name)s登录方式不存在"
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
msgid "Oops, sorry - there was some error - please try again"
msgstr "对不起,系统出错,请重试"
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr "你的%(provider)s登录成功"
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr "你的email需要验证,看这里%(details_url)s"
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, fuzzy, python-format
msgid "Recover your %(site)s account"
msgstr "通过邮件恢复你的账户"
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr "请检查你的邮件并访问其内部链接"
@@ -2783,29 +2937,29 @@ msgid "Site"
msgstr "网站"
# 100%
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr "主"
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
msgid "Base Settings"
msgstr "基本设置"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr "默认值:"
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr "默认值:"
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr "默认值: %s"
# todo take these out of settings
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, fuzzy, python-format
msgid "Allowed image file types are %(types)s"
msgstr "只允许上传'%(types)s'类型的文件!"
@@ -2821,7 +2975,7 @@ msgstr "文档"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "修改密码"
@@ -2882,137 +3036,51 @@ msgstr "全部收起"
msgid "Congratulations, you are now an Administrator"
msgstr "恭喜您,社区给您颁发了奖牌"
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-
# 100%
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr "接受您 %(question_count)d 个问题的最佳答案"
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
msgid "Please accept the best answer for this question:"
msgstr "请接受此问题的最佳答案:"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
msgid "Please accept the best answer for these questions:"
msgstr "请接受这些问题的最佳答案:"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] "关于 %(topics)s问题有%(question_count)d 个更新"
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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] "%(name)s, %(num)d 个问题的更新标题"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
+msgstr[0] ""
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "提问"
-#: 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 ""
-"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?"
-
-#: management/commands/send_email_alerts.py:465
-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 ""
-"在选择的问题上,你的订阅频率设置为'每日' ,如果你每天收到超过一封邮件,请通知"
-"网站管理员"
-
-#: management/commands/send_email_alerts.py:471
-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 ""
-"在选择的问题上,你的订阅频率设置为'每周' ,如果你每周收到超过一封邮件,请通知"
-"网站管理员"
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr "由于技术问题你可能会接收到一个以前看过的链接,我们将解决此问题"
-
-#: management/commands/send_email_alerts.py:490
+#: management/commands/send_email_alerts.py:474
#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
msgstr ""
-"到%(email_settings_link)s去修改邮件更新频率或发送邮件给%(admin_email)s管理员"
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -3023,84 +3091,76 @@ msgstr[0] "关于 %(topics)s问题有%(question_count)d 个更新"
msgid "Please log in to use %s"
msgstr "请登录%s"
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr "对不起,你不能认定或否决最佳答案因为你的账户已冻结"
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr "对不起,你不能认定或否决最佳答案因为你的账户已暂停使用"
-#: models/__init__.py:334
+#: models/__init__.py:337
#, fuzzy, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr "对不起,你不能认定或否决你自己的回答的自己的问题"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr "对不起,只有问题的提问者 - %(username)s - 可以认定最佳答案"
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "不能给自己的帖子投票"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr "对不起你的账户已冻结"
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr "对不起你的账户已暂停使用"
-#: models/__init__.py:410
+#: models/__init__.py:409
#, python-format
msgid ">%(points)s points required to upvote"
msgstr "需要+%(points)s积分才能投支持票。"
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr "需要+%(points)s积分才能投反对票。"
-#: models/__init__.py:431
+#: models/__init__.py:430
msgid "Sorry, blocked users cannot upload files"
msgstr "对不起,冻结用户不能上传文件"
-#: models/__init__.py:432
+#: models/__init__.py:431
msgid "Sorry, suspended users cannot upload files"
msgstr "对不起,暂停使用用户不能上传文件"
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "上传图片只限于积分+%(min_rep)s以上注册用户!"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr "冻结用户不能发布信息"
-
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr "暂停使用用户不能发布信息"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
+msgstr ""
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3110,16 +3170,16 @@ msgid_plural ""
"minutes from posting"
msgstr[0] "对不起,留言只能在发布后%(minutes)s分钟内可编辑"
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr "对不起,只有发布者或版主才能修改留言"
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr "对不起,因为你的账户已暂停使用,你只能留言你自己发布的信息"
-#: models/__init__.py:510
+#: models/__init__.py:523
#, python-format
msgid ""
"Sorry, to comment any post a minimum reputation of %(min_rep)s points is "
@@ -3128,40 +3188,40 @@ msgstr ""
"对不起,留言任何信息都需要最少%(min_rep)s积分值,你可以留言你自己发布或回答的"
"问题"
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr "这个问题已经被删除,而且只能被发布者,网站管理员和版主查看"
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr "对不起,只有版主,网站管理员及发布者可以编辑删除此信息"
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr "对不起,你不能编辑信息因为你的账户被冻结"
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr "对不起,你只能编辑你自己发布的信息因为你的账户被暂停使用"
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr "对不起,编辑wiki信息需要最低积分%(min_rep)s"
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr "对不起,编辑其他人的信息需要最低积分%(min_rep)s"
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3170,254 +3230,259 @@ msgid_plural ""
"by other users"
msgstr[0] "对不起,你不能删除问题因为它已经有了投赞成票的答案"
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr "对不起,你不能删除发布的信息,因为你的账户被冻结了"
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr "对不起,你只能删除你自己发布的信息因为你的账户被暂停使用了"
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr "对不起,你必须有%(min_rep)s积分才能删除别人发布的信息"
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr "对不起,因为你的账户已冻结你不能关闭问题"
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr "对不起,因为你的账户已暂停使用你不能关闭问题"
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr "对不起,你必须有%(min_rep)s积分才能关闭别人发布的信息"
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr "对不起,你必须有%(min_rep)s积分才能关闭自己发布的问题"
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr "对不起,只有管理员,版主和有%(min_rep)s积分的发布者才能重开问题"
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr "对不起,你必须有%(min_rep)s积分才能重开自己发布的问题"
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
-msgstr "不能两次标记同一信息为垃圾信息"
-
-#: models/__init__.py:764
-msgid "blocked users cannot flag posts"
-msgstr "冻结用户不能标记信息"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
+msgstr ""
-#: models/__init__.py:766
-msgid "suspended users cannot flag posts"
-msgstr "暂停使用的用户不能标记信息"
+#: models/__init__.py:783
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr "对不起,你不能删除发布的信息,因为你的账户被冻结了"
-#: models/__init__.py:768
-#, python-format
-msgid "need > %(min_rep)s points to flag spam"
-msgstr "需要大于%(min_rep)s积分值才能标记垃圾信息"
+#: models/__init__.py:794
+#, fuzzy, python-format
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
+msgstr "对不起,为问题修改标签必须有%(min_rep)s积分值"
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
-msgstr "%(max_flags_per_day)s 被处理"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
+msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr "无法移除不存在的标记"
-#: models/__init__.py:803
-msgid "blocked users cannot remove flags"
-msgstr "冻结用户不能移除标记"
+#: models/__init__.py:833
+#, fuzzy
+msgid "Sorry, since your account is blocked you cannot remove flags"
+msgstr "对不起,你不能删除发布的信息,因为你的账户被冻结了"
-#: models/__init__.py:805
-msgid "suspended users cannot remove flags"
-msgstr "暂停使用的用户不能移除标记"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
-#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
-msgstr[0] "需要大于%(min_rep)d积分值才能标记垃圾信息"
+#: models/__init__.py:843
+#, fuzzy, python-format
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgstr[0] "对不起,为问题修改标签必须有%(min_rep)s积分值"
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr "您无权移除所有标记"
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr "本条目无标记"
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr "对不起,只有发问者,网站管理员和版主才能为已删除问题修改标签"
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr "对不起,你的账户已冻结,你不能为问题修改标签"
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr "对不起,你的账户已暂停使用,你只能为你自己的问题修改标签"
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr "对不起,为问题修改标签必须有%(min_rep)s积分值"
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr "对不起,因为你的账户已冻结你不能删除留言"
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr "对不起,因为你的账户暂停使用,你只能删除你自己的留言"
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr "对不起,删除留言必须有%(min_rep)s积分值"
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "这个投票已经过时,不能撤销。"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr "在%(date)s"
-#: models/__init__.py:1397
+#: models/__init__.py:1471
msgid "in two days"
msgstr "两天内"
# 100%
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr "明天"
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] "%(hr)d小时前"
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] "%(min)d分钟前"
# 100%
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] "%(days)d 天"
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr "新用户需等待 %(days)s 天方可回答自己的提问。还剩 %(left)s"
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
msgid "Anonymous"
msgstr "匿名"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
msgid "Site Adminstrator"
msgstr "网站管理员"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr "论坛版主"
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
msgid "Suspended User"
msgstr "暂停账户"
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr "冻结账户"
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
msgid "Registered User"
msgstr "注册用户"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr "浏览用户"
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr "认证用户"
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "%(username)s 积分是 %(reputation)s"
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] "%(count)d 金牌"
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] "%(count)d 银牌"
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "%(count)d 铜牌"
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr "%(item1)s 和 %(item2)s"
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr "%(user)s 有 %(badges)s"
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, python-format
msgid "\"%(title)s\""
msgstr "Re: \"%(title)s\""
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
@@ -3427,7 +3492,7 @@ msgstr ""
" href=\"%(user_profile)s\">你的资料</a>."
# 100%
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr "您的标签订阅已保存,非常感谢!"
@@ -3687,154 +3752,136 @@ msgstr "分类学者"
msgid "Created a tag used by %(num)s questions"
msgstr "创建一个%(num)s个问题都用到的标签"
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "专家"
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "非常活跃的标签"
-#: models/content.py:549
+#: models/post.py:1071
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "对不起,此问题已删除"
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr "对不起,你查找的问题已失效,因为问题已删除"
-#: models/content.py:572
+#: models/post.py:1094
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "对不起,这个问题已删除"
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr "对不起,你查找的评论不能访问,因为问题已删除"
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr "对不起,你查找的评论不能访问,因为回答已删除"
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr "\" 和 \"%s\""
-#: models/question.py:66
+#: models/question.py:57
msgid "\" and more"
msgstr "查看更多"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s修改了问题"
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr "%(people)s 发布了 %(new_answer_count)s 新答案"
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s评论了问题"
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s 评论了答案"
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s 评论了答案"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "更换电子邮件"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr "<em>被版主修改. 原因:</em> %(reason)s"
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr "%(points)s分被加给 %(username)s,因为他贡献了 %(question_title)s问题"
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
msgstr "%(username)s被减去%(points)s分,因为他贡献了 %(question_title)s问题"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "interesting"
msgstr "感兴趣"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "有趣的"
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "忽略的"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "我问的问题"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "我答的问题"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "我选择的问题"
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr "提醒及留言回复"
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr "立即"
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "每日"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "每周"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "没有邮件"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "请输入你的用户名,然后登录"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
msgid "(or select another login method above)"
msgstr "(或从上面选择一个登录方式)"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
msgid "Sign in"
msgstr "注册帐号"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "更换电子邮件"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3843,27 +3890,38 @@ msgstr "保存您的电子邮件地址"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
-msgstr "更换%(email)s电子邮件"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr "为什么邮件是必须的,查看 %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
-msgstr "你的新邮件地址"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
-msgstr "你的邮件"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
msgid "Save Email"
msgstr "保存邮件地址"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3871,121 +3929,112 @@ msgstr "保存邮件地址"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "取消"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
msgid "Validate email"
msgstr "更换电子邮件"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
-msgstr "验证%(email)s 信息或到%(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "邮件地址未修改"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
-msgstr "旧邮件%(email)s被保存,你可以去%(change_email_url)s修改"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
msgid "Email changed"
msgstr "邮件地址已改"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
-msgstr "你目前的%(email)s邮件地址可以被用于这里"
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "邮件地址确认"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
-msgstr "感谢你确认邮件地址"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "邮件地址未发送"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "更换电子邮件"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
-msgstr "邮件地址未发送%(email)s,点这里修改%(change_link)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
+msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
msgid "Registration"
msgstr "注册"
-#: skins/common/templates/authopenid/complete.html:27
-#, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr "注册新 %(provider)s 账户信息, 查看 %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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 ""
-"%(username)s 账户已存在,在%(provider)s找哦昂选择其他名称. Email也是必须的, 查"
-"看 %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr "注册新扩展%(provider)s 账户信息, 查看 %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr "注册新Facebook账户信息, 查看 %(gravatar_faq_url)s"
-
-# todo: review this message may be confusing user
-#: skins/common/templates/authopenid/complete.html:40
+#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
-msgid "This account already exists, please use another."
-msgstr ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"输入您的新帐号已经存在,请使用其他帐号。\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"指定账号已存在,请使用其他账号。"
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "昵称"
-
-#: skins/common/templates/authopenid/complete.html:66
-msgid "Email address label"
-msgstr "您的电子邮件地址"
+msgid "User registration"
+msgstr "注册"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
-msgstr "获取商品信息更新"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "请从以上选项中选择一项"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr "当你登录后,标签过滤工具将出现在你右边的面板里"
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "创建帐号"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "注册帐号"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -4009,9 +4058,10 @@ msgstr "请在这登录"
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr "您忠实的管理员"
#: skins/common/templates/authopenid/email_validation.txt:1
@@ -4027,9 +4077,10 @@ msgid "Following the link above will help us verify your email address."
msgstr "点击上面的链接可以帮助我们确认你的邮件地址"
#: skins/common/templates/authopenid/email_validation.txt:9
+#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr ""
"如果你认为此消息被错误的发送,不要进行更进一步的动作.仅仅忽略这封邮件,为给您带"
@@ -4074,10 +4125,11 @@ msgid ""
msgstr "登录后,你的关于 %(title)s %(summary)s 的问题将被发布"
#: skins/common/templates/authopenid/signin.html:28
+#, fuzzy
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
"选择以下你最喜欢的方式登录,你的扩展服务密码将被保护且你不需.要记住或创建一个"
"新密码."
@@ -4116,122 +4168,90 @@ msgid ""
"account"
msgstr "请检查你的邮件并访问邮件里链接重连你的账户"
-#: skins/common/templates/authopenid/signin.html:87
-msgid "Please enter your <span>user name and password</span>, then sign in"
+#: skins/common/templates/authopenid/signin.html:89
+#, fuzzy
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "使用帐号密码登录"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "请在这登录"
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr "登录失败,请重试"
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
msgid "Login or email"
msgstr "登录名或电子邮箱地址"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "密码"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "登录"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr "修改密码-请输入新密码两次并提交"
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
msgid "New password"
msgstr "新密码"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
msgid "Please, retype"
msgstr "确认密码"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr "这里有你的登录方式"
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
msgid "provider"
msgstr "提供者"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
msgid "last used"
msgstr "上次活动时间"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr "可以删除"
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "删除"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
msgid "cannot be deleted"
msgstr "无法删除"
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
msgid "Still have trouble signing in?"
msgstr "还有其他问题?"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
msgid "Please, enter your email address below and obtain a new key"
msgstr "请输入你的邮件地址及验证码"
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
msgid "Please, enter your email address below to recover your account"
msgstr "恢复账户,请在下面输入你的邮件地址"
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
msgid "recover your account via email"
msgstr "通过邮件恢复你的账户"
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr "发送一个恢复建"
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
msgid "Recover your account via email"
msgstr "通过邮件恢复你的账户"
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr "为什么需要OpenID登录?"
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr ""
-"构建在OpenID网络认证上的本系统,不需要你注册新的帐号,即可使用我们系统的所有"
-"功能"
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr "用同一个帐号可登录互联网所有激活OpenID的网站"
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr "全世界有1.6亿OpenID帐号,和10,000个支持OpenID的站点"
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr "OpenID是有开放标准,并且有相关的基金组织提供支持"
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "查看更多"
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr "获取OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "注册帐号"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
msgid "Please register by clicking on any of the icons below"
msgstr "请注册或点击下列任一图标"
@@ -4245,24 +4265,29 @@ msgid "Create login name and password"
msgstr "使用帐号密码登录"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
-msgstr "传统登录信息"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr "请输入验证信息"
-#: skins/common/templates/authopenid/signup_with_password.html:47
-msgid "Create Account"
-msgstr "创建帐号"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "或者"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
msgid "return to OpenID login"
msgstr "返回登录"
@@ -4321,67 +4346,69 @@ msgstr ""
msgid "Delete These"
msgstr "删除这些"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "该回答的链接地址"
+#: skins/common/templates/question/answer_controls.html:2
+msgid "swap with question"
+msgstr "与提问对调"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "永久链接"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "编辑"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "链接"
+
+# todo please check this in chinese
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "取消"
+
+#: skins/common/templates/question/answer_controls.html:19
+#, fuzzy
+msgid "remove offensive flag"
+msgstr "查看标记垃圾帖"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
-msgid "remove all flags"
-msgstr "移除所有标签"
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+msgid "remove flag"
+msgstr "移除标签"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr "检举该帖为垃“水帖”(含广告、人身攻击、恶意言论等)"
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "垃圾帖?"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-msgid "remove flag"
-msgstr "移除标签"
-
-# todo please check this in chinese
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "取消"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "编辑"
-#: skins/common/templates/question/answer_controls.html:50
-msgid "swap with question"
-msgstr "与提问对调"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "该回答已被设为最佳答案"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
msgid "mark this answer as correct (click again to undo)"
msgstr "标记最佳答案 (再次点击可取消)"
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "这个答案已经被%(question_author)s标记为正确答案"
-
#: skins/common/templates/question/closed_question_info.html:2
#, python-format
msgid ""
@@ -4395,59 +4422,68 @@ msgid "close date %(closed_at)s"
msgstr "%(closed_at)s日关闭"
#: skins/common/templates/question/question_controls.html:6
-msgid "retag"
-msgstr "更新标签"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "打开"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "关闭"
-#: skins/common/templates/widgets/edit_post.html:21
-msgid "one of these is required"
+#: skins/common/templates/question/question_controls.html:35
+msgid "retag"
+msgstr "更新标签"
+
+#: skins/common/templates/widgets/edit_post.html:22
+#, fuzzy
+msgid ", one of these is required"
msgstr "这些为必填项"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "标签"
+
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "必填"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "打开或者关闭Markdown编辑器的实时预览"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "禁用预览"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "相关标签"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr "个标签"
# book.html line 123 must be empty in english
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr "感兴趣的标签"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
msgid "add"
msgstr "添加"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "忽略标签"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
msgid "Display tag filter"
msgstr "显示标签过滤器"
@@ -4502,7 +4538,7 @@ msgid "back to previous page"
msgstr "返回前页"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr "查看最新问题"
@@ -4531,11 +4567,6 @@ msgstr "最新问题"
msgid "see tags"
msgstr "查看标签"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr "关于 %(site_name)s"
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4566,17 +4597,20 @@ msgstr "现在修改"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "启用预览"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "我要提问"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "现在提问"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr "%(name)s"
@@ -4591,8 +4625,8 @@ msgid "Badge \"%(name)s\""
msgstr "%(name)s"
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, python-format
msgid "%(description)s"
msgstr "%(description)s"
@@ -4602,11 +4636,7 @@ msgid "user received this badge:"
msgid_plural "users received this badge:"
msgstr[0] "用户获得奖牌"
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "奖牌列表"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
#, fuzzy
msgid "Badges"
msgstr ""
@@ -4620,16 +4650,16 @@ msgid "Community gives you awards for your questions, answers and votes."
msgstr "提出问题,给予回答,投出你的票 - 社区会对你的表现,授予你各类奖牌。"
#: skins/default/templates/badges.html:8
-#, python-format
+#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"这里列出社区所有的奖牌,以及每类奖牌获取的所需条件。反馈请至 "
"%(feedback_faq_url)s。\n"
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
#, fuzzy
msgid "Community badges"
msgstr ""
@@ -4638,7 +4668,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"社区奖牌"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
#, fuzzy
msgid "gold badge: the highest honor and is very rare"
msgstr ""
@@ -4647,27 +4677,33 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"金牌:十分罕见之最高荣耀"
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr "金牌:十分罕见之最高奖励"
+#: skins/default/templates/badges.html:41
+#, fuzzy
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
+msgstr ""
+"金牌是十分罕见的。你不仅要参与社区的提问、回答、投票等活动,而且需要有高深的"
+"知识和能力才能获得。"
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr "银牌:偶尔颁发之优质奖章"
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
+#: skins/default/templates/badges.html:51
+#, fuzzy
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
msgstr "银牌:偶尔颁发之优质奖章"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "铜牌:时常授予之特殊荣誉"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "铜牌:时常授予之特殊荣誉"
-
# close.html
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
@@ -4685,11 +4721,10 @@ msgstr "原因"
msgid "OK to close"
msgstr "确定关闭"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr "问答"
@@ -4713,15 +4748,17 @@ msgstr ""
"最重要的——问题应与本社区<strong>有关</strong>。"
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"提问之前,充分利用系统的自动查找、标签和搜索,看看是否已经有一样的问题并有了"
"答案。"
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "什么样的问题我不该在这里提问?"
#: skins/default/templates/faq_static.html:11
@@ -4741,19 +4778,12 @@ msgid "What should I avoid in my answers?"
msgstr "什么样的回答是不受欢迎的?"
#: skins/default/templates/faq_static.html:14
-#, fuzzy
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."
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
msgstr ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"希望用户针对提问的问题回答,可以是进一步了解问题实质,给予参考方案,或完全解"
-"决问题的回答。我们希望通过问答的形式解决用户的实际问题。因此,我们不欢迎在回"
-"答中出现不是回答问题的内容,包括针对他人回答的讨论,和其他无意义的浪费网络资"
-"源行为。\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"是问答网站,而非讨论群。请勿在此讨论或评论答案。"
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4775,8 +4805,8 @@ msgstr ""
#: skins/default/templates/faq_static.html:18
#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"通过积分运作,每个用户都有权限创建标签,对所有问题、回答投票、编辑、关闭等操"
@@ -4785,12 +4815,17 @@ msgstr ""
"积分系统允许用户赢得执行多种管理操作的权限。"
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "什么是社区积分?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr "更新概要:"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, python-format
@@ -4816,57 +4851,68 @@ msgstr ""
msgid "upvote"
msgstr "投赞成票"
-#: skins/default/templates/faq_static.html:37
-msgid "use tags"
-msgstr "标记垃圾帖"
-
# todo - check if it's indeed plural
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "添加评论"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "投反对票"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
msgid " accept own answer to own questions"
msgstr " 自己的提问接受自己的回答"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
msgid "open and close own questions"
msgstr "打开关闭任何人的问题"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
msgid "retag other's questions"
msgstr "整理标签"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "编辑wiki类问题"
-#: skins/default/templates/faq_static.html:67
-msgid "\"edit any answer"
+#: skins/default/templates/faq_static.html:61
+#, fuzzy
+msgid "edit any answer"
msgstr "\"编辑任意回答"
-#: skins/default/templates/faq_static.html:71
-msgid "\"delete any comment"
+#: skins/default/templates/faq_static.html:65
+#, fuzzy
+msgid "delete any comment"
msgstr "\"删除任意评论"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "什么是图像及如何修改?"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
-msgstr "图像常见问题"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "我需要注册一个新用户吗?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
msgid ""
"No, you don't have to. You can login through any service that supports "
"OpenID, e.g. Google, Yahoo, AOL, etc.\""
@@ -4874,15 +4920,15 @@ msgstr ""
"不需要。社区提供了OpenID的登录支持,你要用Google、Yahoo等任何支持OpenID登录的"
"帐号就可以使用系统。"
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
msgid "\"Login now!\""
msgstr "马上登录"
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "为什么其他人可以修改我的问题/回答?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
#, fuzzy
msgid "Goal of this site is..."
msgstr ""
@@ -4891,7 +4937,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"本站的目标是..."
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
#, fuzzy
msgid ""
"So questions and answers can be edited like wiki pages by experienced users "
@@ -4905,19 +4951,19 @@ msgstr ""
"所以问题和答案都是如 Wiki 一样可编辑的,我们希望社区能帮助用户沉淀、积累更多"
"有用的知识和经验。"
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr "如果您不喜欢这种方式,我们尊重你的选择。"
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "还有其他问题?"
-#: skins/default/templates/faq_static.html:85
-#, python-format
+#: skins/default/templates/faq_static.html:80
+#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr ""
"请提交你的<a href=\\\"%(ask_question_url)s\\\">疑问<\\a>,帮助我们一起完善网站"
@@ -4982,6 +5028,68 @@ msgstr ""
"\n"
"你好, 这是从 %(site_title)s 网站发出的反馈信息。\n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "回应%(username)s"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -5111,58 +5219,59 @@ msgstr ""
msgid "<p>Sincerely,<br/>Forum Administrator</p>"
msgstr "<p>忠实的<br/>网站管理员</p>"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr "发布我的提问到Twitter"
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr "关注 %(alias)s"
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr "取消关注 %(alias)s"
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr "已关注 %(alias)s"
-#: skins/default/templates/macros.html:29
-msgid "i like this question (click again to cancel)"
-msgstr "这篇提问我喜欢 (再次点击可取消)"
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "这篇帖子有价值(再次点击取消操作)"
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr "当前总票数"
-#: skins/default/templates/macros.html:43
-msgid "i dont like this question (click again to cancel)"
-msgstr "这篇提问我不喜欢 (再次点击可取消)"
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr "这篇帖子没有价值(再次点击取消操作)"
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
msgid "anonymous user"
msgstr "匿名用户"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr "这个发布像社区wiki被标记"
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
@@ -5171,114 +5280,96 @@ msgstr ""
"这个发布是wiki.\n"
"任何积分为 &gt;%(wiki_min_rep)s 都可以改进它."
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "提问于"
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
msgid "answered"
msgstr "回答"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
msgid "posted"
msgstr "发布"
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "更新于"
# this is how above two are supposed to be
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "查看有关%(tag)s的问题"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "删除这个留言"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "添加评论"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "查看<strong>%(counter)s</strong>更多"
-
-#: skins/default/templates/macros.html:310
-#, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "查看<strong>%(counter)s</strong>更多评论"
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "%(username)s 图像"
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "%(username)s当前的状态是 \"%(url)s\""
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "上一页"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "当前页"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
-#, python-format
-msgid "page number %(num)s"
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
+#, fuzzy, python-format
+msgid "page %(num)s"
msgstr "第%(num)s页"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "下一页"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "每页显示:"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, python-format
msgid "responses for %(username)s"
msgstr "回应%(username)s"
-#: skins/default/templates/macros.html:632
-#, python-format
-msgid "you have a new response"
+#: skins/default/templates/macros.html:610
+#, fuzzy, python-format
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "你有 %(response_count)s 个新回应"
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
msgid "no new responses yet"
msgstr "仍没有回应"
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "%(new)s 新标记的发布和之前查看的 %(seen)s"
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, python-format
msgid "%(new)s new flagged posts"
msgstr "%(new)s 新标记的发布信息"
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, python-format
msgid "%(seen)s flagged posts"
msgstr "\"%(seen)s 已标记的发布信息"
@@ -5287,10 +5378,38 @@ msgstr "\"%(seen)s 已标记的发布信息"
msgid "Questions"
msgstr "问题列表"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
-msgstr "隐私政策"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "查看<strong>%(counter)s</strong>更多"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "查看<strong>%(counter)s</strong>更多"
+
+# todo - check if it's indeed plural
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "已发布10条评论"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "回答你自己的问题"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "您的回答"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "登录/注册后回答"
# page title
#: skins/default/templates/question_edit.html:4
@@ -5300,8 +5419,9 @@ msgstr "修改问题"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "修改标签"
+#, fuzzy
+msgid "Retag question"
+msgstr "相似的问题"
#: skins/default/templates/question_retag.html:21
msgid "Retag"
@@ -5358,6 +5478,13 @@ msgstr "确定打开这个问题"
msgid "Reopen this question"
msgstr "确定打开这个问题"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
# revisions_answer.html
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
@@ -5386,17 +5513,17 @@ msgstr "请订阅下述标签:"
msgid "Subscribe"
msgstr "订阅"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "标签列表"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr "匹配 \"%(stag)s\" 的标签"
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "标签列表"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
msgid "Sort by &raquo;"
msgstr "排序方式 &raquo;"
@@ -5421,7 +5548,7 @@ msgstr ""
msgid "by popularity"
msgstr "按流行度排序"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "没有找到相关数据。"
@@ -5435,7 +5562,9 @@ msgstr "查看积分最高的用户"
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
msgstr "积分"
#: skins/default/templates/users.html:20
@@ -5472,7 +5601,7 @@ msgstr "匹配查询%(suser)s用户:"
msgid "Nothing found."
msgstr "没有找到相关数据。"
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5487,39 +5616,39 @@ msgstr "%(author_name)s的贡献"
msgid "Tagged"
msgstr "已加标签"
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr "搜索主题"
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr "重置作者"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
msgid " or "
msgstr "或者"
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr "重置标签"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr "重新开始"
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr " - 通过添加更多标签和改进查询来扩展和挖掘信息"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr "搜索主题 :"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr "添加标签和查询条件进行更精确查询"
@@ -5557,15 +5686,15 @@ msgstr "重新开始"
msgid "Please always feel free to ask your question!"
msgstr "发布你自己的问题"
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr "你找的问题没有?"
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr "现在提问"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
#, fuzzy
msgid "subscribe to the questions feed"
msgstr ""
@@ -5574,7 +5703,7 @@ msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"订阅问题 feed"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr "RSS"
@@ -5589,104 +5718,96 @@ msgstr ""
"enable javascript in your browser, <a href=\"%(noscript_url)s\">here is how</"
"a>"
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] "每个标签的长度不超过%(max_chars)s"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "最多只能有%(tag_count)s个标签"
# todo: remove magic numbers from this file
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
msgstr "最多%(tag_count)s个标签,每个标签长度小于%(max_chars)s个字符。"
#: skins/default/templates/question/answer_tab_bar.html:3
-#, python-format
+#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
"%(counter)s个回答:"
+#: skins/default/templates/question/answer_tab_bar.html:11
+#, fuzzy
+msgid "Sort by »"
+msgstr "排序"
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr "最先回答显示在最前面"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "最先回答"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "最晚回答显示在最前面"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "最近回答"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "投票次数最多的显示在最前面"
-#: skins/default/templates/question/answer_tab_bar.html:21
-#, fuzzy
-msgid "popular answers"
-msgstr ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"受欢迎的答案\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"投票最多"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "回答你自己的问题"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
msgid "Login/Signup to Answer"
msgstr "登录/注册后回答"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "您的回答"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr "成为第一个回答此问题的人!"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr "你可以匿名回答,然后登录"
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
-msgstr "仅仅为了回答你自己的问题而给一个答案"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
-msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。"
-
-#: skins/default/templates/question/new_answer_form.html:43
-msgid "Login/Signup to Post Your Answer"
-msgstr "登录发布你的答案"
+msgid ""
+"<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)!"
+msgstr ""
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "回答该问题"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5705,41 +5826,41 @@ msgstr " 或"
msgid "email"
msgstr "邮件"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
msgid "Question tools"
msgstr "提问工具"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
msgid "click to unfollow this question"
msgstr "点击取消关注问题"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
msgid "Following"
msgstr "已关注"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
msgid "Unfollow"
msgstr "取消关注"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
msgid "click to follow this question"
msgstr "点击可关注此问题"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
msgid "Follow"
msgstr "关注"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] "%(count)s 位粉丝"
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
msgid "email the updates"
msgstr "邮件订阅更新"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
@@ -5747,11 +5868,11 @@ msgstr ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
msgid "subscribe to this question rss feed"
msgstr "订阅问题 rss feed"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
msgid "subscribe to rss feed"
msgstr "订阅 rss feed"
@@ -5760,53 +5881,45 @@ msgid "Stats"
msgstr "统计"
#: skins/default/templates/question/sidebar.html:48
-msgid "question asked"
-msgstr "已问问题"
+#, fuzzy
+msgid "Asked"
+msgstr "提问于"
#: skins/default/templates/question/sidebar.html:51
-#, fuzzy
-msgid "question was seen"
+msgid "Seen"
msgstr ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"浏览量\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"目前浏览数量"
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "次"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "最后更新时间"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "相似的问题"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
-msgid "Notify me once a day when there are any new answers"
-msgstr "当有新回答的时候每天提醒我一次"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
+#, fuzzy
+msgid "Email me when there are any new answers"
msgstr "当有新回答的时候每周提醒我一次"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-msgid "Notify me immediately when there are any new answers"
-msgstr "当有新回答的时候立即提醒我一次"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
-msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr "你可以通过%(profile_url)s调整你的邮件更新频率"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
+#: skins/default/templates/question/subscribe_by_email_prompt.html:11
msgid "once you sign in you will be able to subscribe for any updates here"
msgstr "一旦你注册你就可以订阅这里的任何更新"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+#, fuzzy
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+"<strong>Here</strong> (once you log in) you will be able to sign up for the "
+"periodic email updates about this question."
+
#: skins/default/templates/user_profile/user.html:12
#, python-format
msgid "%(username)s's profile"
@@ -5838,8 +5951,13 @@ msgstr "注册用户"
msgid "Screen Name"
msgstr "用户名"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "无法删除"
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "更新"
@@ -5852,13 +5970,19 @@ msgstr "订阅"
msgid "Email subscription settings"
msgstr "邮件订阅设置"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr "邮件订阅设置信息"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "停止发送邮件"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr "你的邮件"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5885,18 +6009,22 @@ msgid "flagged items (%(flag_count)s)"
msgstr "已标记项目 (%(flag_count)s)"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
msgid "select:"
msgstr "选择:"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
msgid "seen"
msgstr "查看"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
msgid "new"
msgstr "新"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
msgid "none"
msgstr "无"
@@ -5912,6 +6040,16 @@ msgstr "新标记"
msgid "dismiss"
msgstr "驳回"
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "移除标签"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "删除"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "更新我的资料"
@@ -5925,7 +6063,8 @@ msgid "real name"
msgstr "姓名"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "已加入"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5933,7 +6072,8 @@ msgid "last seen"
msgstr "上次活动时间"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
+#, fuzzy
+msgid "website"
msgstr "个人网站"
#: skins/default/templates/user_profile/user_info.html:75
@@ -6076,19 +6216,16 @@ msgid "%(username)s's network is empty"
msgstr "%(username)s用户概览"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
msgid "activity"
msgstr "活跃问题"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr "来源"
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr "积分"
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "你的积分历史"
@@ -6110,20 +6247,16 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Questions"
msgstr[0] "<span class=\"count\">%(counter)s</span>个问题"
#: skins/default/templates/user_profile/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] "<span class=\"count\">%(counter)s</span>个答案"
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "回答"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "该回答总共有%(answer_score)s个投票"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "该回答已被设为最佳答案"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, python-format
msgid "(%(comment_count)s comment)"
@@ -6158,13 +6291,13 @@ msgid "<span class=\"count\">%(counter)s</span> Tag"
msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] "<span class=\"count\">%(counter)s</span>标签"
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
msgstr[0] "<span class=\"count\">%(counter)s</span>奖牌"
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
msgid "Answer to:"
msgstr "回答:"
@@ -6172,7 +6305,7 @@ msgstr "回答:"
msgid "User profile"
msgstr "用户概览"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "其他问题的回复和评论"
@@ -6181,53 +6314,39 @@ msgid "followers and followed users"
msgstr "粉丝及已关注用户"
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "用户的社区积分历史"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "积分"
-
#: skins/default/templates/user_profile/user_tabs.html:25
msgid "questions that user is following"
msgstr "用户关注的问题"
-#: skins/default/templates/user_profile/user_tabs.html:29
-#, fuzzy
-msgid "recent activity"
-msgstr ""
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"最近活跃\n"
-"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
-"最近活动"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "用户所有投票"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "投票"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "票"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "邮件订阅设置"
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
msgid "moderate this user"
msgstr "设为版主"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "票"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "受欢迎的提问"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
#, fuzzy
-msgid "please make your answer relevant to this community"
+msgid "give an answer interesting to this community"
msgstr ""
"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
"请确认你的答案和这个主题相关\n"
@@ -6239,7 +6358,9 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
msgstr "请详细描述您的问题"
#: skins/default/templates/widgets/answer_edit_tips.html:15
@@ -6254,7 +6375,8 @@ msgstr "查看常见问题"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "标记栏参考"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6278,11 +6400,6 @@ msgid "**bold** or __bold__"
msgstr "**加粗** 或者 __加粗__ "
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "链接"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6314,29 +6431,29 @@ msgstr ""
msgid "learn more about Markdown"
msgstr "有关Markdown详细说明"
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "我要提问"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr "登录并提交问题"
-#: skins/default/templates/widgets/ask_form.html:10
-#, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
-msgstr "必须有正确的%(email)s才能发布,查看%(email_validation_faq_url)s"
-
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your 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."
+msgstr ""
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "现在提问"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6353,10 +6470,15 @@ msgid "about"
msgstr "关于本站"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "隐私政策"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "问题反馈"
@@ -6377,17 +6499,14 @@ msgstr "用户"
msgid "badges"
msgstr "奖牌榜"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "受欢迎的提问"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "请问与此社区相关的问题"
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "请详细描述您的问题"
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr ""
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"请确认你的答案和这个主题相关\n"
+"#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+"请确保回答与社区有关"
#: skins/default/templates/widgets/question_summary.html:12
msgid "view"
@@ -6404,27 +6523,27 @@ msgid "vote"
msgid_plural "votes"
msgstr[0] "票"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr "全部"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "see unanswered questions"
msgstr "查看没有回答的问题"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr "未回答"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "see your followed questions"
msgstr "查看已关注问题"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr "已关注"
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
msgid "Please ask your question here"
msgstr "请在此提问"
@@ -6436,24 +6555,27 @@ msgstr "按积分排序"
msgid "badges:"
msgstr "奖牌榜"
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
-msgstr "退出登录"
+#: skins/default/templates/widgets/user_navigation.html:9
+#, fuzzy
+msgid "sign out"
+msgstr "退出/"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "登录"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "请在这登录"
# book.html line 123 must be empty in english
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
msgid "settings"
msgstr "设置"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
-msgid "no items in counter"
+#: templatetags/extra_filters_jinja.py:279
+#, fuzzy
+msgid "no"
msgstr "无"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr "对不起,系统错误"
@@ -6471,7 +6593,8 @@ msgid "this field is required"
msgstr "必填项"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "选择一个用户名"
#: utils/forms.py:69
@@ -6503,8 +6626,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr "用户名需包含字母"
#: utils/forms.py:138
-msgid "your email address"
-msgstr "您的电子邮件地址"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6518,17 +6641,13 @@ msgstr "请输入正确的邮件地址"
msgid "this email is already used by someone else, please choose another"
msgstr "该电子邮件已被注册,请选择另一个再试。"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "密码"
-
#: utils/forms.py:170
msgid "password is required"
msgstr "必填项"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "确认密码"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
msgid "please, retype your password"
@@ -6538,26 +6657,70 @@ msgstr "确认密码"
msgid "sorry, entered passwords did not match, please try again"
msgstr "对不起,你输入的密码不匹配,请重新输入"
-#: utils/functions.py:74
+#: utils/functions.py:82
msgid "2 days ago"
msgstr "2天前"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "昨天"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] "%(hr)d小时前"
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] "%(min)d分钟前"
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+
# 100%
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
@@ -6573,169 +6736,187 @@ msgstr "成功更新头像。"
msgid "Successfully deleted the requested avatars."
msgstr "成功删除所请求头像。"
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr "对不起,匿名用户没有收件箱"
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "匿名用户不能投票"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr "对不起,你今天的投票已用完"
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr "你今天还可以投%(votes_left)s次票"
-#: views/commands.py:123
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "对不起,匿名用户没有收件箱"
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr "对不起,这里出了些问题"
-#: views/commands.py:213
+#: views/commands.py:229
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "匿名用户不能接受回答"
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr "订阅已保存,%(email)s邮件需要验证, 查看 %(details_url)s"
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "邮件更新频率已设置成每日更新"
# 100%
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr "标签订阅已取消 (<a href=\"%(url)s\">撤销</a>)。"
-#: views/commands.py:442
+#: views/commands.py:473
#, fuzzy, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr "请登录"
-#: views/commands.py:578
+#: views/commands.py:600
msgid "Please sign in to vote"
msgstr "请登录后投票"
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "请登录后投票"
+
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "关于 %(site_name)s"
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Q&A反馈"
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "感谢你的反馈"
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr "我们期望你的反馈"
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr "隐私政策"
+
+#: views/readers.py:133
#, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "%(q_num)s个问题"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] "%(badge_count)d %(badge_level)s奖章"
-
-#: views/readers.py:416
+#: views/readers.py:388
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr "对不起,你找的这个评论已经被删除"
-#: views/users.py:212
+#: views/users.py:206
msgid "moderate user"
msgstr "管理用户"
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "用户概览"
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "用户概览"
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "最近活动"
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "最近活动"
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "回应 - 用户资料"
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "用户资料 - 投票"
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "用户社区积分"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr "用户名"
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "积分 - 用户资料"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "用户收藏的问题"
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "收藏 - 用户资料"
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "修改已保存"
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "邮件更新取消"
-#: views/users.py:975
+#: views/users.py:770
msgid "profile - email subscriptions"
msgstr "邮件订阅"
-#: views/writers.py:59
+#: views/writers.py:60
msgid "Sorry, anonymous users cannot upload files"
msgstr "匿名用户不能上传文件"
# todo take these out of settings
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "只允许上传'%(file_types)s'类型的文件!"
-#: views/writers.py:92
+#: views/writers.py:84
#, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "只允许上传不超过%(file_size)sK大小的文件!"
-#: views/writers.py:100
+#: views/writers.py:92
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr "在文件上传过程中产生了错误,请联系管理员,谢谢^_^"
-#: views/writers.py:192
-msgid "Please log in to ask questions"
-msgstr "请登录后提问"
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
msgid "Please log in to answer questions"
msgstr "请登录后回答"
-#: views/writers.py:600
+#: views/writers.py:572
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot post comments. Please <a href="
@@ -6744,11 +6925,11 @@ msgstr ""
"对不起,你已经退出,不恩那个在发表评论,请<a href=\"%(sign_in_url)s\">登录</"
"a>."
-#: views/writers.py:649
+#: views/writers.py:589
msgid "Sorry, anonymous users cannot edit comments"
msgstr "匿名用户不能编辑评论"
-#: views/writers.py:658
+#: views/writers.py:619
#, python-format
msgid ""
"Sorry, you appear to be logged out and cannot delete comments. Please <a "
@@ -6757,25 +6938,473 @@ msgstr ""
"对不起,你已经退出,不恩那个在发表评论,请<a href=\"%(sign_in_url)s\">登录</"
"a>."
-#: views/writers.py:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr "对不起,好像有一些技术上的错误。"
-#~ msgid "question content must be > 10 characters"
-#~ msgstr "内容至少要10个字符"
+#~ msgid "use-these-chars-in-tags"
+#~ msgstr "在标签中使用这些字符"
-#~ msgid "Question: \"%(title)s\""
-#~ msgstr "问题:\"%(title)s\""
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "电子邮箱地址将与 gravatar 关联"
+
+#~ msgid "URL for the LDAP service"
+#~ msgstr "LDAP服务URL"
+
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "如何修改LDAP密码"
+
+#~ msgid "question_answered"
+#~ msgstr "回答的问题"
+
+#~ msgid "question_commented"
+#~ msgstr "留言的问题"
+
+#~ msgid "answer_commented"
+#~ msgstr "留言的回答"
+
+#~ msgid "answer_accepted"
+#~ msgstr "已接受的回答"
+
+#~ msgid "Incorrect username."
+#~ msgstr "选择一个用户名"
+
+#~ msgid ""
+#~ "This command may help you migrate to LDAP password authentication by "
+#~ "creating a record for LDAP association with each user account. There is "
+#~ "an assumption that ldap user id's are the same as user names registered "
+#~ "at the site. Before running this command it is necessary to set up LDAP "
+#~ "parameters in the \"External keys\" section of the site settings."
+#~ msgstr ""
+#~ "This command may help you migrate to LDAP password authentication by "
+#~ "creating a record for LDAP association with each user account. There is "
+#~ "an assumption that ldap user id's are the same as user names registered "
+#~ "at the site. Before running this command it is necessary to set up LDAP "
+#~ "parameters in the \"External keys\" section of the site settings."
+
+#~ 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] "%(name)s, %(num)d 个问题的更新标题"
+
+#~ 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 ""
+#~ "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?"
+
+#~ 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 ""
+#~ "在选择的问题上,你的订阅频率设置为'每日' ,如果你每天收到超过一封邮件,请"
+#~ "通知网站管理员"
+
+#~ 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 ""
+#~ "在选择的问题上,你的订阅频率设置为'每周' ,如果你每周收到超过一封邮件,请"
+#~ "通知网站管理员"
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr "由于技术问题你可能会接收到一个以前看过的链接,我们将解决此问题"
+
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr ""
+#~ "到%(email_settings_link)s去修改邮件更新频率或发送邮件给%(admin_email)s管理"
+#~ "员"
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr "上传图片只限于积分+%(min_rep)s以上注册用户!"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr "冻结用户不能发布信息"
+
+#~ msgid "suspended users cannot post"
+#~ msgstr "暂停使用用户不能发布信息"
+
+#~ msgid "cannot flag message as offensive twice"
+#~ msgstr "不能两次标记同一信息为垃圾信息"
+
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr "冻结用户不能标记信息"
+
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr "暂停使用的用户不能标记信息"
+
+#~ msgid "need > %(min_rep)s points to flag spam"
+#~ msgstr "需要大于%(min_rep)s积分值才能标记垃圾信息"
+
+#~ msgid "%(max_flags_per_day)s exceeded"
+#~ msgstr "%(max_flags_per_day)s 被处理"
+
+#~ msgid "blocked users cannot remove flags"
+#~ msgstr "冻结用户不能移除标记"
+
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr "暂停使用的用户不能移除标记"
+
+#~ msgid "need > %(min_rep)d point to remove flag"
+#~ msgid_plural "need > %(min_rep)d points to remove flag"
+#~ msgstr[0] "需要大于%(min_rep)d积分值才能标记垃圾信息"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "这个投票已经过时,不能撤销。"
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s修改了问题"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr "%(people)s 发布了 %(new_answer_count)s 新答案"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s评论了问题"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s 评论了答案"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s 评论了答案"
+
+#~ msgid "change %(email)s info"
+#~ msgstr "更换%(email)s电子邮件"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr "为什么邮件是必须的,查看 %(gravatar_faq_url)s"
+
+#~ msgid "Your new Email"
+#~ msgstr "你的新邮件地址"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr "验证%(email)s 信息或到%(change_email_url)s"
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr "旧邮件%(email)s被保存,你可以去%(change_email_url)s修改"
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr "你目前的%(email)s邮件地址可以被用于这里"
+
+#~ msgid "thanks for verifying email"
+#~ msgstr "感谢你确认邮件地址"
+
+#~ msgid "email key not sent"
+#~ msgstr "邮件地址未发送"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr "邮件地址未发送%(email)s,点这里修改%(change_link)s"
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr "注册新 %(provider)s 账户信息, 查看 %(gravatar_faq_url)s"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "%(username)s 账户已存在,在%(provider)s找哦昂选择其他名称. Email也是必须"
+#~ "的, 查看 %(gravatar_faq_url)s"
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr "注册新扩展%(provider)s 账户信息, 查看 %(gravatar_faq_url)s"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr "注册新Facebook账户信息, 查看 %(gravatar_faq_url)s"
+
+# todo: review this message may be confusing user
#, fuzzy
+#~ msgid "This account already exists, please use another."
+#~ msgstr ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "输入您的新帐号已经存在,请使用其他帐号。\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "指定账号已存在,请使用其他账号。"
+
+#~ msgid "Screen name label"
+#~ msgstr "昵称"
+
+#~ msgid "Email address label"
+#~ msgstr "您的电子邮件地址"
+
+#~ msgid "receive updates motivational blurb"
+#~ msgstr "获取商品信息更新"
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr "当你登录后,标签过滤工具将出现在你右边的面板里"
+
+#~ msgid "create account"
+#~ msgstr "创建帐号"
+
#~ msgid ""
-#~ "If you believe that this message was sent in mistake - \n"
-#~ "no further action is needed. Just ignore this email, we apologize\n"
-#~ "for any inconvenience."
+#~ "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 ""
#~ "如果你认为此消息被错误的发送,不要进行更进一步的动作.仅仅忽略这封邮件,为给"
#~ "您带来的不便道歉."
+#~ msgid "Login"
+#~ msgstr "登录"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "为什么需要OpenID登录?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr ""
+#~ "构建在OpenID网络认证上的本系统,不需要你注册新的帐号,即可使用我们系统的所"
+#~ "有功能"
+
+#~ msgid "reuse openid"
+#~ msgstr "用同一个帐号可登录互联网所有激活OpenID的网站"
+
+#~ msgid "openid is widely adopted"
+#~ msgstr "全世界有1.6亿OpenID帐号,和10,000个支持OpenID的站点"
+
+#~ msgid "openid is supported open standard"
+#~ msgstr "OpenID是有开放标准,并且有相关的基金组织提供支持"
+
+#~ msgid "Find out more"
+#~ msgstr "查看更多"
+
+#~ msgid "Get OpenID"
+#~ msgstr "获取OpenID"
+
+#~ msgid "Traditional signup info"
+#~ msgstr "传统登录信息"
+
+#~ msgid "Create Account"
+#~ msgstr "创建帐号"
+
+#~ msgid "answer permanent link"
+#~ msgstr "该回答的链接地址"
+
+#~ msgid "remove all flags"
+#~ msgstr "移除所有标签"
+
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "这个答案已经被%(question_author)s标记为正确答案"
+
+#~ msgid "Related tags"
+#~ msgstr "相关标签"
+
+#~ msgid "Ask a question"
+#~ msgstr "我要提问"
+
+#~ msgid "Badges summary"
+#~ msgstr "奖牌列表"
+
+#~ msgid "gold badge description"
+#~ msgstr "金牌:十分罕见之最高奖励"
+
+#~ msgid "silver badge description"
+#~ msgstr "银牌:偶尔颁发之优质奖章"
+
+#~ msgid "bronze badge description"
+#~ msgstr "铜牌:时常授予之特殊荣誉"
+
+#, fuzzy
+#~ 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 ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "希望用户针对提问的问题回答,可以是进一步了解问题实质,给予参考方案,或完全"
+#~ "解决问题的回答。我们希望通过问答的形式解决用户的实际问题。因此,我们不欢迎"
+#~ "在回答中出现不是回答问题的内容,包括针对他人回答的讨论,和其他无意义的浪费"
+#~ "网络资源行为。\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "是问答网站,而非讨论群。请勿在此讨论或评论答案。"
+
+#~ msgid "Rep system summary"
+#~ msgstr "更新概要:"
+
+#~ msgid "use tags"
+#~ msgstr "标记垃圾帖"
+
+#~ msgid "what is gravatar"
+#~ msgstr "什么是图像及如何修改?"
+
+#~ msgid "gravatar faq info"
+#~ msgstr "图像常见问题"
+
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "这篇提问我喜欢 (再次点击可取消)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "这篇帖子有价值(再次点击取消操作)"
+
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "这篇提问我不喜欢 (再次点击可取消)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "这篇帖子没有价值(再次点击取消操作)"
+
+#~ msgid "add comment"
+#~ msgstr "添加评论"
+
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] "查看<strong>%(counter)s</strong>更多评论"
+
+#~ msgid "posts per page"
+#~ msgstr "每页显示:"
+
+#~ msgid "Change tags"
+#~ msgstr "修改标签"
+
+#~ msgid "reputation"
+#~ msgstr "积分"
+
+#~ msgid "oldest answers"
+#~ msgstr "最先回答"
+
+#~ msgid "newest answers"
+#~ msgstr "最近回答"
+
+#, fuzzy
+#~ msgid "popular answers"
+#~ msgstr ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "受欢迎的答案\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "投票最多"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr "你可以匿名回答,然后登录"
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr "仅仅为了回答你自己的问题而给一个答案"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。"
+
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "登录发布你的答案"
+
+#~ msgid "Answer the question"
+#~ msgstr "回答该问题"
+
+#~ msgid "question asked"
+#~ msgstr "已问问题"
+
+#, fuzzy
+#~ msgid "question was seen"
+#~ msgstr ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "浏览量\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "目前浏览数量"
+
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr "当有新回答的时候每天提醒我一次"
+
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr "当有新回答的时候立即提醒我一次"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr "你可以通过%(profile_url)s调整你的邮件更新频率"
+
+#~ msgid "email subscription settings info"
+#~ msgstr "邮件订阅设置信息"
+
+#~ msgid "Stop sending email"
+#~ msgstr "停止发送邮件"
+
+#~ msgid "user website"
+#~ msgstr "个人网站"
+
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] "<span class=\"count\">%(counter)s</span>个答案"
+
+#~ msgid "reputation history"
+#~ msgstr "积分"
+
+#, fuzzy
+#~ msgid "recent activity"
+#~ msgstr ""
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "最近活跃\n"
+#~ "#-#-#-#-# django.po (0.7) #-#-#-#-#\n"
+#~ "最近活动"
+
+#~ msgid "casted votes"
+#~ msgstr "投票"
+
+#~ msgid "answer tips"
+#~ msgstr "受欢迎的提问"
+
+#~ msgid "please try to provide details"
+#~ msgstr "请详细描述您的问题"
+
+#~ msgid "ask a question"
+#~ msgstr "我要提问"
+
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ " see %(email_validation_faq_url)s\n"
+#~ " "
+#~ msgstr "必须有正确的%(email)s才能发布,查看%(email_validation_faq_url)s"
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "登录并发布问题"
+
+#~ msgid "question tips"
+#~ msgstr "受欢迎的提问"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "请问与此社区相关的问题"
+
+#~ msgid "logout"
+#~ msgstr "退出登录"
+
+#~ msgid "login"
+#~ msgstr "登录"
+
+#~ msgid "no items in counter"
+#~ msgstr "无"
+
+#~ msgid "your email address"
+#~ msgstr "您的电子邮件地址"
+
+#~ msgid "choose password"
+#~ msgstr "密码"
+
+#~ msgid "retype password"
+#~ msgstr "确认密码"
+
+#~ msgid "%(badge_count)d %(badge_level)s badge"
+#~ msgid_plural "%(badge_count)d %(badge_level)s badges"
+#~ msgstr[0] "%(badge_count)d %(badge_level)s奖章"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "用户社区积分"
+
+#~ msgid "Please log in to ask questions"
+#~ msgstr "请登录后提问"
+
+#~ msgid "question content must be > 10 characters"
+#~ msgstr "内容至少要10个字符"
+
+#~ msgid "Question: \"%(title)s\""
+#~ msgstr "问题:\"%(title)s\""
+
#~ msgid "(please enter a valid email)"
#~ msgstr "请输入正确的email地址"
@@ -6809,9 +7438,6 @@ msgstr "对不起,好像有一些技术上的错误。"
#~ msgid "Question tags"
#~ msgstr "您正在浏览的问题含有以下标签"
-#~ msgid "questions"
-#~ msgstr "问题"
-
#~ msgid "search"
#~ msgstr "搜索"
@@ -6825,9 +7451,6 @@ msgstr "对不起,好像有一些技术上的错误。"
#~ msgid "In:"
#~ msgstr "选择:"
-#~ msgid "Sort by:"
-#~ msgstr "排序"
-
#~ msgid "Email (not shared with anyone):"
#~ msgstr "电子邮件"
@@ -7155,10 +7778,6 @@ msgstr "对不起,好像有一些技术上的错误。"
#~ msgid "taxonomist"
#~ msgstr "分类学者"
-# todo - check if it's indeed plural
-#~ msgid "Posted 10 comments"
-#~ msgstr "已发布10条评论"
-
# footer.html
#~ msgid "About"
#~ msgstr "关于本站"
@@ -7566,9 +8185,6 @@ msgstr "对不起,好像有一些技术上的错误。"
#~ msgid "Existing account"
#~ msgstr "已经存在的用户"
-#~ msgid "user name"
-#~ msgstr "用户名"
-
#~ msgid "password"
#~ msgstr "密码"
@@ -7639,11 +8255,6 @@ msgstr "对不起,好像有一些技术上的错误。"
#~ "please use space to separate tags (this enables autocomplete feature)"
#~ msgstr "多个标签请用空格间隔-最多5个标签。(优先使用自动匹配的英文标签。)"
-#~ msgid ""
-#~ "please use following characters in tags: letters 'a-z', numbers, and "
-#~ "characters '.-_#'"
-#~ msgstr "标签请使用英文字母,中文或者数字字符串(. - _ # 也可以)"
-
#~ msgid "profile - user preferences"
#~ msgstr "设置 - 用户资料"
@@ -7663,14 +8274,6 @@ msgstr "对不起,好像有一些技术上的错误。"
#~ msgstr "电子邮件:(不会公开显示)"
#~ msgid ""
-#~ "gold badge descriptionGold badge is very rare. To obtain it you have to "
-#~ "show profound knowledge and ability in addition to actively participating "
-#~ "in the community. Gold badge is the highest award in this community."
-#~ msgstr ""
-#~ "金牌是十分罕见的。你不仅要参与社区的提问、回答、投票等活动,而且需要有高深"
-#~ "的知识和能力才能获得。"
-
-#~ msgid ""
#~ "silver badge descriptionObtaining silver badge requires significant "
#~ "patience. If you got one, you've very significantly contributed to this "
#~ "community"
@@ -7757,9 +8360,6 @@ msgstr "对不起,好像有一些技术上的错误。"
#~ msgid "votes total"
#~ msgstr "个投票"
-#~ msgid "Tags"
-#~ msgstr "个标签"
-
#~ msgid "New password again"
#~ msgstr "发送新密码"
diff --git a/askbot/locale/zh_CN/LC_MESSAGES/djangojs.po b/askbot/locale/zh_CN/LC_MESSAGES/djangojs.po
index 2bca077f..c8775c04 100644
--- a/askbot/locale/zh_CN/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/zh_CN/LC_MESSAGES/djangojs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:58-0500\n"
"PO-Revision-Date: 2012-01-24 18:47+0200\n"
"Last-Translator: Dean <xslidian@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,7 +19,7 @@ msgstr ""
# 100%
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr "您是否确定要移除您的 %s 登录?"
@@ -40,45 +40,45 @@ msgid "passwords do not match"
msgstr "密码不匹配"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr "显示/更改当前登录方式"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr "请输入您的 %s 然后继续"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr "将您的 %(provider_name)s 账号连接到 %(site)s"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr "更改您的 %s 密码"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr "更改密码"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr "为 %s 创建密码"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr "创建密码"
# 100%
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr "创建受密码保护的账号"
@@ -86,157 +86,84 @@ msgstr "创建受密码保护的账号"
msgid "loading..."
msgstr "读取中..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "标签不能为空。"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "内容不能为空。"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "请输入至少 %s 字符。"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "请输入标题。"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "请输入至少 %s 字符。"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "用户权限不在操作范围"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "不能设置自己的回答为最佳答案"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "注册或者登录"
# 100%
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr "匿名用户可跟踪提问"
# 100%
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr "匿名用户不能订阅提问"
# 100%
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr "匿名用户不能投票"
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr "确定要归类该帖为广告、人身攻击、恶意言论吗?"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr "确定要归类该帖为广告、人身攻击、恶意言论吗?"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "匿名用户不能操作,请先"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "确定要删除/撤销删除该帖吗?"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "匿名用户不能删除或撤销删除帖子"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "操作成功!该帖子已被恢复。"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "操作成功!该帖子已删除。"
-# 100%
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr "跟踪"
-
-# 100%
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] "%s 位跟踪者"
-
-# 100%
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr "<div>已关注</div><div class=\"unfollow\">取消关注</div>"
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "取消"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "删除"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "添加评论"
# 100%
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr "保存评论"
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "还可写%s字符"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "还可写%s字符"
-
# 100%
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr "取消"
-
-# 100%
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr "确认放弃评论"
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "删除此评论"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "真要删除此评论吗?"
-
-# 100%
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr "请输入提问标题 (>10 字符)"
# 100%
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr "标签“<span></span>”匹配下述提问:"
# 100%
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr "另有 %s 条未显示..."
@@ -251,130 +178,191 @@ msgid "Delete this notification?"
msgid_plural "Delete these notifications?"
msgstr[0] "删除通知?"
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "删除此评论"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "删除此评论"
+
# 100%
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr "请<a href=\"%(signin_url)s\">登录</a>方可关注 %(username)s"
# 100%
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr "取消关注 %s"
# 100%
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr "正在关注 %s"
# 100%
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr "关注 %s"
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "点击消息框关闭"
-# 100%
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr "点击编辑此评论"
-
-# 100%
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr "编辑"
-
-# 100%
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr "查看含标签“%s”的提问"
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "粗体"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "斜体"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "超链接"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "引用"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "代码"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "图片"
# 100%
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr "附件"
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "数字编号列表"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "项目符号列表"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "标题"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "水平线"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "撤销"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "重做"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
"<b>输入图片地址</b></p><p>示例:<br />http://www.example.com/image.jpg \"我"
"的截图\""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
"<b>输入Web地址</b></p><p>示例:<br />http://www.cnprog.com/ \"我的网站\"</"
"p>"
# 100%
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr "上传文件附件"
+#~ msgid "tags cannot be empty"
+#~ msgstr "标签不能为空。"
+
+#~ msgid "content cannot be empty"
+#~ msgstr "内容不能为空。"
+
+#~ msgid "%s content minchars"
+#~ msgstr "请输入至少 %s 字符。"
+
+#~ msgid "please enter title"
+#~ msgstr "请输入标题。"
+
+#~ msgid "%s title minchars"
+#~ msgstr "请输入至少 %s 字符。"
+
+# 100%
+#~ msgid "Follow"
+#~ msgstr "跟踪"
+
+# 100%
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] "%s 位跟踪者"
+
+# 100%
+#~ msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
+#~ msgstr "<div>已关注</div><div class=\"unfollow\">取消关注</div>"
+
+#~ msgid "undelete"
+#~ msgstr "取消"
+
+#~ msgid "delete"
+#~ msgstr "删除"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "还可写%s字符"
+
+#~ msgid "%s characters left"
+#~ msgstr "还可写%s字符"
+
+# 100%
+#~ msgid "cancel"
+#~ msgstr "取消"
+
+# 100%
+#~ msgid "confirm abandon comment"
+#~ msgstr "确认放弃评论"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "真要删除此评论吗?"
+
+# 100%
+#~ msgid "click to edit this comment"
+#~ msgstr "点击编辑此评论"
+
+# 100%
+#~ msgid "edit"
+#~ msgstr "编辑"
+
+# 100%
+#~ msgid "see questions tagged '%s'"
+#~ msgstr "查看含标签“%s”的提问"
+
# 100%
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr "图像描述"
+#~ msgid "image description"
+#~ msgstr "图像描述"
# 100%
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr "文件名"
+#~ msgid "file name"
+#~ msgstr "文件名"
# 100%
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr "链接文字"
+#~ msgid "link text"
+#~ msgstr "链接文字"
diff --git a/askbot/locale/zh_TW/LC_MESSAGES/django.po b/askbot/locale/zh_TW/LC_MESSAGES/django.po
index 8ea949dc..af6c0b0b 100644
--- a/askbot/locale/zh_TW/LC_MESSAGES/django.po
+++ b/askbot/locale/zh_TW/LC_MESSAGES/django.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-02 11:20-0600\n"
+"POT-Creation-Date: 2012-04-18 18:52-0500\n"
"PO-Revision-Date: 2010-08-25 19:05+0800\n"
"Last-Translator: cch <cch@mail>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,16 +22,16 @@ msgstr ""
msgid "Sorry, but anonymous visitors cannot access this function"
msgstr "匿名用戶不能投票"
-#: feed.py:26 feed.py:100
+#: feed.py:28 feed.py:90
msgid " - "
msgstr "-"
-#: feed.py:26
+#: feed.py:28
#, fuzzy
msgid "Individual question feed"
msgstr "已選問題"
-#: feed.py:100
+#: feed.py:90
msgid "latest questions"
msgstr "最新問題"
@@ -61,23 +61,32 @@ msgid "please enter a descriptive title for your question"
msgstr ""
"請輸入對問題具有描述性質的標題 - 「幫忙!緊急求助!」不是建議的提問方式。"
-#: forms.py:111
+#: forms.py:113
#, fuzzy, python-format
msgid "title must be > %d character"
msgid_plural "title must be > %d characters"
msgstr[0] "標題的長度必須大於10"
-#: forms.py:131
+#: forms.py:123
+#, python-format
+msgid "The title is too long, maximum allowed size is %d characters"
+msgstr ""
+
+#: forms.py:130
+#, python-format
+msgid "The title is too long, maximum allowed size is %d bytes"
+msgstr ""
+
+#: forms.py:149
msgid "content"
msgstr "內容"
-#: forms.py:165 skins/common/templates/widgets/edit_post.html:20
-#: skins/common/templates/widgets/edit_post.html:32
+#: forms.py:185 skins/common/templates/widgets/edit_post.html:21
#: skins/default/templates/widgets/meta_nav.html:5
msgid "tags"
msgstr "標籤"
-#: forms.py:168
+#: forms.py:188
#, fuzzy, python-format
msgid ""
"Tags are short keywords, with no spaces within. Up to %(max_tags)d tag can "
@@ -87,46 +96,47 @@ msgid_plural ""
"be used."
msgstr[0] "標籤為關鍵詞, 內無空格, 最多可使用 5 個"
-#: forms.py:201 skins/default/templates/question_retag.html:58
+#: forms.py:222 skins/default/templates/question_retag.html:58
msgid "tags are required"
msgstr " 標籤不能為空。"
-#: forms.py:210
+#: forms.py:232
#, fuzzy, python-format
msgid "please use %(tag_count)d tag or less"
msgid_plural "please use %(tag_count)d tags or less"
msgstr[0] "最多只能有5個標籤"
-#: forms.py:218
+#: forms.py:240
#, python-format
msgid "At least one of the following tags is required : %(tags)s"
msgstr ""
-#: forms.py:227
+#: forms.py:249
#, fuzzy, 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] "每個標籤的長度不超過20"
-#: forms.py:235
-msgid "use-these-chars-in-tags"
-msgstr ""
+#: forms.py:258
+#, fuzzy
+msgid "In tags, please use letters, numbers and characters \"-+.#\""
+msgstr "標籤請使用英文字母,中文或者數字字符串(. - _ # 也可以)"
-#: forms.py:270
+#: forms.py:294
msgid "community wiki (karma is not awarded & many others can edit wiki post)"
msgstr ""
-#: forms.py:271
+#: forms.py:295
msgid ""
"if you choose community wiki option, the question and answer do not generate "
"points and name of author will not be shown"
msgstr "選擇社區wiki模式,問答不計算積分,簽名也不顯示作者信息"
-#: forms.py:287
+#: forms.py:311
msgid "update summary:"
msgstr "更新概要:"
-#: forms.py:288
+#: forms.py:312
msgid ""
"enter a brief summary of your revision (e.g. fixed spelling, grammar, "
"improved style, this field is optional)"
@@ -134,344 +144,363 @@ msgstr ""
"輸入本次修改的簡單概述(如:修改了別字,修正了語法,改進了樣式等。非必填"
"項。)"
-#: forms.py:364
+#: forms.py:386
msgid "Enter number of points to add or subtract"
msgstr ""
-#: forms.py:378 const/__init__.py:250
+#: forms.py:400 const/__init__.py:253
msgid "approved"
msgstr ""
-#: forms.py:379 const/__init__.py:251
+#: forms.py:401 const/__init__.py:254
msgid "watched"
msgstr ""
-#: forms.py:380 const/__init__.py:252
+#: forms.py:402 const/__init__.py:255
#, fuzzy
msgid "suspended"
msgstr "更新"
-#: forms.py:381 const/__init__.py:253
+#: forms.py:403 const/__init__.py:256
msgid "blocked"
msgstr ""
-#: forms.py:383
+#: forms.py:405
#, fuzzy
msgid "administrator"
msgstr ""
"你好, \n"
" 論壇管理者"
-#: forms.py:384 const/__init__.py:249
+#: forms.py:406 const/__init__.py:252
msgid "moderator"
msgstr ""
-#: forms.py:404
+#: forms.py:426
#, fuzzy
msgid "Change status to"
msgstr "修改標籤"
-#: forms.py:431
+#: forms.py:453
msgid "which one?"
msgstr ""
-#: forms.py:452
+#: forms.py:474
#, fuzzy
msgid "Cannot change own status"
msgstr "不能給自己的帖子投票"
-#: forms.py:458
+#: forms.py:480
msgid "Cannot turn other user to moderator"
msgstr ""
-#: forms.py:465
+#: forms.py:487
msgid "Cannot change status of another moderator"
msgstr ""
-#: forms.py:471
+#: forms.py:493
#, fuzzy
msgid "Cannot change status to admin"
msgstr "不能給自己的帖子投票"
-#: forms.py:477
+#: forms.py:499
#, python-format
msgid ""
"If you wish to change %(username)s's status, please make a meaningful "
"selection."
msgstr ""
-#: forms.py:486
+#: forms.py:508
msgid "Subject line"
msgstr ""
-#: forms.py:493
+#: forms.py:515
#, fuzzy
msgid "Message text"
msgstr "訊息"
-#: forms.py:579
+#: forms.py:530
#, fuzzy
msgid "Your name (optional):"
msgstr "用戶名"
-#: forms.py:580
+#: forms.py:531
#, fuzzy
msgid "Email:"
msgstr "email"
-#: forms.py:582
+#: forms.py:533
#, fuzzy
msgid "Your message:"
msgstr "Copyright(c)2009.CNPROG.COM"
-#: forms.py:587
+#: forms.py:538
msgid "I don't want to give my email or receive a response:"
msgstr ""
-#: forms.py:609
+#: forms.py:560
msgid "Please mark \"I dont want to give my mail\" field."
msgstr ""
-#: forms.py:648
+#: forms.py:599
#, fuzzy
msgid "ask anonymously"
msgstr "匿名者"
-#: forms.py:650
+#: forms.py:601
msgid "Check if you do not want to reveal your name when asking this question"
msgstr ""
-#: forms.py:810
+#: forms.py:624
+msgid ""
+"Subject line is expected in the format: [tag1, tag2, tag3,...] question title"
+msgstr ""
+
+#: forms.py:769
msgid ""
"You have asked this question anonymously, if you decide to reveal your "
"identity, please check this box."
msgstr ""
-#: forms.py:814
+#: forms.py:773
msgid "reveal identity"
msgstr ""
-#: forms.py:872
+#: forms.py:831
msgid ""
"Sorry, only owner of the anonymous question can reveal his or her identity, "
"please uncheck the box"
msgstr ""
-#: forms.py:885
+#: forms.py:844
msgid ""
"Sorry, apparently rules have just changed - it is no longer possible to ask "
"anonymously. Please either check the \"reveal identity\" box or reload this "
"page and try editing the question again."
msgstr ""
-#: forms.py:923
-#, fuzzy
-msgid "this email will be linked to gravatar"
-msgstr "不會公開,用於頭像顯示服務"
-
-#: forms.py:930
+#: forms.py:888
msgid "Real name"
msgstr "真實姓名"
-#: forms.py:937
+#: forms.py:895
msgid "Website"
msgstr "個人網站"
-#: forms.py:944
+#: forms.py:902
msgid "City"
msgstr ""
-#: forms.py:953
+#: forms.py:911
#, fuzzy
msgid "Show country"
msgstr "新帳號"
-#: forms.py:958
+#: forms.py:916
msgid "Date of birth"
msgstr "生日"
-#: forms.py:959
+#: forms.py:917
msgid "will not be shown, used to calculate age, format: YYYY-MM-DD"
msgstr "不會公開,只會顯示您的年齡,格式為:YYYY-MM-DD"
-#: forms.py:965
+#: forms.py:923
msgid "Profile"
msgstr "個人簡介"
-#: forms.py:974
+#: forms.py:932
#, fuzzy
msgid "Screen name"
msgstr "姓名"
-#: forms.py:1005 forms.py:1006
+#: forms.py:963 forms.py:964
msgid "this email has already been registered, please use another one"
msgstr "該電子郵件已被注冊,請選擇另一個再試。"
-#: forms.py:1013
+#: forms.py:971
msgid "Choose email tag filter"
msgstr "選擇 Email 標籤篩選"
-#: forms.py:1060
+#: forms.py:1018
msgid "Asked by me"
msgstr "詢問"
-#: forms.py:1063
+#: forms.py:1021
msgid "Answered by me"
msgstr "回應"
-#: forms.py:1066
+#: forms.py:1024
msgid "Individually selected"
msgstr "個別選定"
-#: forms.py:1069
+#: forms.py:1027
msgid "Entire forum (tag filtered)"
msgstr "整個論壇 (標籤篩選)"
-#: forms.py:1073
+#: forms.py:1031
msgid "Comments and posts mentioning me"
msgstr ""
-#: forms.py:1152
+#: forms.py:1112
+msgid "please choose one of the options above"
+msgstr "請選上述選項之一"
+
+#: forms.py:1115
msgid "okay, let's try!"
msgstr "好, 試試看"
-#: forms.py:1153
-msgid "no community email please, thanks"
+#: forms.py:1118
+#, fuzzy, python-format
+msgid "no %(sitename)s email please, thanks"
msgstr "無須設群 Email 謝謝"
-#: forms.py:1157
-msgid "please choose one of the options above"
-msgstr "請選上述選項之一"
+#: lamson_handlers.py:126 tests/reply_by_email_tests.py:49
+msgid "======= Reply above this line. ====-=-="
+msgstr ""
+
+#: lamson_handlers.py:130
+msgid ""
+"Your message was malformed. Please make sure to qoute the "
+"original notification you received at the end of your reply."
+msgstr ""
+
+#: lamson_handlers.py:147
+msgid ""
+"You were replying to an email address unknown to the system or you "
+"were replying from a different address from the one where you "
+"received the notification."
+msgstr ""
# footer.html
-#: urls.py:52
+#: urls.py:41
#, fuzzy
msgid "about/"
msgstr "關於本站"
-#: urls.py:53
+#: urls.py:42
#, fuzzy
msgid "faq/"
msgstr "常見問題"
-#: urls.py:54
+#: urls.py:43
#, fuzzy
msgid "privacy/"
msgstr "隱私政策"
-#: urls.py:56 urls.py:61
+#: urls.py:44
+msgid "help/"
+msgstr ""
+
+#: urls.py:46 urls.py:51
#, fuzzy
msgid "answers/"
msgstr "回答"
-#: urls.py:56 urls.py:82 urls.py:207
+#: urls.py:46 urls.py:87 urls.py:212
#, fuzzy
msgid "edit/"
msgstr "編輯"
-#: urls.py:61 urls.py:112
+#: urls.py:51 urls.py:117
#, fuzzy
msgid "revisions/"
msgstr "版本"
-#: urls.py:67 urls.py:77 urls.py:82 urls.py:87 urls.py:92 urls.py:97
-#: urls.py:102 urls.py:107 urls.py:112 urls.py:118 urls.py:294
-#: skins/default/templates/question/javascript.html:16
-#: skins/default/templates/question/javascript.html:19
+#: urls.py:61
+msgid "questions"
+msgstr "問題"
+
+#: urls.py:82 urls.py:87 urls.py:92 urls.py:97 urls.py:102 urls.py:107
+#: urls.py:112 urls.py:117 urls.py:123 urls.py:299
#, fuzzy
msgid "questions/"
msgstr "問題"
-#: urls.py:77
+#: urls.py:82
#, fuzzy
msgid "ask/"
msgstr "提問於"
-#: urls.py:87
+#: urls.py:92
#, fuzzy
msgid "retag/"
msgstr "標籤"
-#: urls.py:92
+#: urls.py:97
#, fuzzy
msgid "close/"
msgstr "關閉"
-#: urls.py:97
+#: urls.py:102
#, fuzzy
msgid "reopen/"
msgstr "打開"
-#: urls.py:102
+#: urls.py:107
#, fuzzy
msgid "answer/"
msgstr "回答"
-#: urls.py:107 skins/default/templates/question/javascript.html:16
+#: urls.py:112
#, fuzzy
msgid "vote/"
msgstr "票"
-#: urls.py:118
+#: urls.py:123
msgid "widgets/"
msgstr ""
-#: urls.py:153
+#: urls.py:158
#, fuzzy
msgid "tags/"
msgstr "標籤"
-#: urls.py:196
+#: urls.py:201
msgid "subscribe-for-tags/"
msgstr ""
-#: urls.py:201 urls.py:207 urls.py:213 urls.py:221
-#: skins/default/templates/main_page/javascript.html:39
-#: skins/default/templates/main_page/javascript.html:42
+#: urls.py:206 urls.py:212 urls.py:218 urls.py:226
#, fuzzy
msgid "users/"
msgstr "用戶"
-#: urls.py:214
+#: urls.py:219
#, fuzzy
msgid "subscriptions/"
msgstr "email 訂閱"
-#: urls.py:226
+#: urls.py:231
msgid "users/update_has_custom_avatar/"
msgstr ""
-#: urls.py:231 urls.py:236
+#: urls.py:236 urls.py:241
#, fuzzy
msgid "badges/"
msgstr "獎牌榜"
-#: urls.py:241
+#: urls.py:246
msgid "messages/"
msgstr ""
-#: urls.py:241
+#: urls.py:246
msgid "markread/"
msgstr ""
-#: urls.py:257
+#: urls.py:262
msgid "upload/"
msgstr ""
-#: urls.py:258
+#: urls.py:263
#, fuzzy
msgid "feedback/"
msgstr "問題回饋"
-#: urls.py:300 skins/default/templates/main_page/javascript.html:38
-#: skins/default/templates/main_page/javascript.html:41
-#: skins/default/templates/question/javascript.html:15
-#: skins/default/templates/question/javascript.html:18
+#: urls.py:305
#, fuzzy
msgid "question/"
msgstr "提問"
-#: urls.py:307 setup_templates/settings.py:208
+#: urls.py:312 setup_templates/settings.py:210
#: skins/common/templates/authopenid/providers_javascript.html:7
#, fuzzy
msgid "account/"
@@ -609,160 +638,183 @@ msgid ""
msgstr ""
#: conf/email.py:38
+msgid "Enable email alerts"
+msgstr ""
+
+#: conf/email.py:47
msgid "Maximum number of news entries in an email alert"
msgstr ""
-#: conf/email.py:48
+#: conf/email.py:57
msgid "Default notification frequency all questions"
msgstr ""
-#: conf/email.py:50
+#: conf/email.py:59
msgid "Option to define frequency of emailed updates for: all questions."
msgstr ""
# must have extra space after in english
-#: conf/email.py:62
+#: conf/email.py:71
#, fuzzy
msgid "Default notification frequency questions asked by the user"
msgstr "查看有關"
-#: conf/email.py:64
+#: conf/email.py:73
msgid ""
"Option to define frequency of emailed updates for: Question asked by the "
"user."
msgstr ""
-#: conf/email.py:76
+#: conf/email.py:85
#, fuzzy
msgid "Default notification frequency questions answered by the user"
msgstr "刪除任何一個問題或答案,及執行其他管理功能"
-#: conf/email.py:78
+#: conf/email.py:87
msgid ""
"Option to define frequency of emailed updates for: Question answered by the "
"user."
msgstr ""
-#: conf/email.py:90
+#: conf/email.py:99
msgid ""
"Default notification frequency questions individually "
"selected by the user"
msgstr ""
-#: conf/email.py:93
+#: conf/email.py:102
msgid ""
"Option to define frequency of emailed updates for: Question individually "
"selected by the user."
msgstr ""
-#: conf/email.py:105
+#: conf/email.py:114
msgid ""
"Default notification frequency for mentions and "
"comments"
msgstr ""
-#: conf/email.py:108
+#: conf/email.py:117
msgid ""
"Option to define frequency of emailed updates for: Mentions and comments."
msgstr ""
-#: conf/email.py:119
+#: conf/email.py:128
#, fuzzy
msgid "Send periodic reminders about unanswered questions"
msgstr "無未解答問題"
-#: conf/email.py:121
+#: conf/email.py:130
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_unanswered_question_reminders\" (for example, via a cron job "
"- with an appropriate frequency) "
msgstr ""
-#: conf/email.py:134
+#: conf/email.py:143
#, fuzzy
msgid "Days before starting to send reminders about unanswered questions"
msgstr "無未解答問題"
-#: conf/email.py:145
+#: conf/email.py:154
msgid ""
"How often to send unanswered question reminders (in days between the "
"reminders sent)."
msgstr ""
-#: conf/email.py:157
+#: conf/email.py:166
msgid "Max. number of reminders to send about unanswered questions"
msgstr ""
-#: conf/email.py:168
+#: conf/email.py:177
#, fuzzy
msgid "Send periodic reminders to accept the best answer"
msgstr "無未解答問題"
-#: conf/email.py:170
+#: conf/email.py:179
msgid ""
"NOTE: in order to use this feature, it is necessary to run the management "
"command \"send_accept_answer_reminders\" (for example, via a cron job - with "
"an appropriate frequency) "
msgstr ""
-#: conf/email.py:183
+#: conf/email.py:192
#, fuzzy
msgid "Days before starting to send reminders to accept an answer"
msgstr "無未解答問題"
-#: conf/email.py:194
+#: conf/email.py:203
msgid ""
"How often to send accept answer reminders (in days between the reminders "
"sent)."
msgstr ""
-#: conf/email.py:206
+#: conf/email.py:215
msgid "Max. number of reminders to send to accept the best answer"
msgstr ""
-#: conf/email.py:218
+#: conf/email.py:227
msgid "Require email verification before allowing to post"
msgstr ""
-#: conf/email.py:219
+#: conf/email.py:228
msgid ""
"Active email verification is done by sending a verification key in email"
msgstr ""
-#: conf/email.py:228
+#: conf/email.py:237
#, fuzzy
msgid "Allow only one account per email address"
msgstr "您的電子郵件地址"
-#: conf/email.py:237
+#: conf/email.py:246
msgid "Fake email for anonymous user"
msgstr ""
-#: conf/email.py:238
+#: conf/email.py:247
msgid "Use this setting to control gravatar for email-less user"
msgstr ""
-#: conf/email.py:247
+#: conf/email.py:256
#, fuzzy
msgid "Allow posting questions by email"
msgstr "簽入張貼問題"
-#: conf/email.py:249
+#: conf/email.py:258
msgid ""
"Before enabling this setting - please fill out IMAP settings in the settings."
"py file"
msgstr ""
-#: conf/email.py:260
+#: conf/email.py:269
msgid "Replace space in emailed tags with dash"
msgstr ""
-#: conf/email.py:262
+#: conf/email.py:271
msgid ""
"This setting applies to tags written in the subject line of questions asked "
"by email"
msgstr ""
+#: conf/email.py:284
+#, fuzzy
+msgid "Enable posting answers and comments by email"
+msgstr "簽入張貼問題"
+
+#: conf/email.py:287
+msgid "To enable this feature make sure lamson is running"
+msgstr ""
+
+#: conf/email.py:298
+msgid "Reply by email hostname"
+msgstr ""
+
+#: conf/email.py:311
+msgid ""
+"Email replies having fewer words than this number will be posted as comments "
+"instead of answers"
+msgstr ""
+
#: conf/external_keys.py:11
msgid "Keys for external services"
msgstr ""
@@ -793,15 +845,15 @@ msgstr ""
msgid "Enable recaptcha (keys below are required)"
msgstr ""
-#: conf/external_keys.py:60
+#: conf/external_keys.py:62
msgid "Recaptcha public key"
msgstr ""
-#: conf/external_keys.py:68
+#: conf/external_keys.py:70
msgid "Recaptcha private key"
msgstr ""
-#: conf/external_keys.py:70
+#: conf/external_keys.py:72
#, python-format
msgid ""
"Recaptcha is a tool that helps distinguish real people from annoying spam "
@@ -809,11 +861,11 @@ msgid ""
"a>"
msgstr ""
-#: conf/external_keys.py:82
+#: conf/external_keys.py:84
msgid "Facebook public API key"
msgstr ""
-#: conf/external_keys.py:84
+#: conf/external_keys.py:86
#, python-format
msgid ""
"Facebook API key and Facebook secret allow to use Facebook Connect login "
@@ -821,73 +873,56 @@ msgid ""
"\">facebook create app</a> site"
msgstr ""
-#: conf/external_keys.py:97
+#: conf/external_keys.py:99
msgid "Facebook secret key"
msgstr ""
-#: conf/external_keys.py:105
+#: conf/external_keys.py:107
#, fuzzy
msgid "Twitter consumer key"
msgstr " Twitter 帳號:"
-#: conf/external_keys.py:107
+#: conf/external_keys.py:109
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">twitter applications site</"
"a>"
msgstr ""
-#: conf/external_keys.py:118
+#: conf/external_keys.py:120
msgid "Twitter consumer secret"
msgstr ""
-#: conf/external_keys.py:126
+#: conf/external_keys.py:128
msgid "LinkedIn consumer key"
msgstr ""
-#: conf/external_keys.py:128
+#: conf/external_keys.py:130
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">LinkedIn developer site</a>"
msgstr ""
-#: conf/external_keys.py:139
+#: conf/external_keys.py:141
msgid "LinkedIn consumer secret"
msgstr ""
-#: conf/external_keys.py:147
+#: conf/external_keys.py:149
#, fuzzy
msgid "ident.ca consumer key"
msgstr " Twitter 帳號:"
-#: conf/external_keys.py:149
+#: conf/external_keys.py:151
#, python-format
msgid ""
"Please register your forum at <a href=\"%(url)s\">Identi.ca applications "
"site</a>"
msgstr ""
-#: conf/external_keys.py:160
+#: conf/external_keys.py:162
msgid "ident.ca consumer secret"
msgstr ""
-#: conf/external_keys.py:168
-msgid "Use LDAP authentication for the password login"
-msgstr ""
-
-#: conf/external_keys.py:177
-msgid "LDAP service provider name"
-msgstr ""
-
-#: conf/external_keys.py:185
-msgid "URL for the LDAP service"
-msgstr ""
-
-#: conf/external_keys.py:193
-#, fuzzy
-msgid "Explain how to change LDAP password"
-msgstr "帳號: 密碼已改變"
-
#: conf/flatpages.py:11
msgid "Flatpages - about, privacy policy, etc."
msgstr ""
@@ -926,11 +961,13 @@ msgstr ""
msgid "Data entry and display rules"
msgstr ""
-#: conf/forum_data_rules.py:22
+#: conf/forum_data_rules.py:21
+msgid "Enable embedding videos. "
+msgstr ""
+
+#: conf/forum_data_rules.py:23
#, python-format
-msgid ""
-"Enable embedding videos. <em>Note: please read <a href=\"%(url)s>read this</"
-"a> first.</em>"
+msgid "<em>Note: please read <a href=\"%(url)s\">read this</a> first.</em>"
msgstr ""
#: conf/forum_data_rules.py:33
@@ -988,110 +1025,168 @@ msgstr ""
#: conf/forum_data_rules.py:126
#, fuzzy
+msgid "Are tags required?"
+msgstr " 標籤不能為空。"
+
+#: conf/forum_data_rules.py:135
+#, fuzzy
msgid "Mandatory tags"
msgstr "更新標籤"
-#: conf/forum_data_rules.py:129
+#: conf/forum_data_rules.py:138
msgid ""
"At least one of these tags will be required for any new or newly edited "
"question. A mandatory tag may be wildcard, if the wildcard tags are active."
msgstr ""
-#: conf/forum_data_rules.py:141
+#: conf/forum_data_rules.py:150
msgid "Force lowercase the tags"
msgstr ""
-#: conf/forum_data_rules.py:143
+#: conf/forum_data_rules.py:152
msgid ""
"Attention: after checking this, please back up the database, and run a "
"management command: <code>python manage.py fix_question_tags</code> to "
"globally rename the tags"
msgstr ""
-#: conf/forum_data_rules.py:157
+#: conf/forum_data_rules.py:166
msgid "Format of tag list"
msgstr ""
-#: conf/forum_data_rules.py:159
+#: conf/forum_data_rules.py:168
msgid ""
"Select the format to show tags in, either as a simple list, or as a tag cloud"
msgstr ""
-#: conf/forum_data_rules.py:171
+#: conf/forum_data_rules.py:180
#, fuzzy
msgid "Use wildcard tags"
msgstr "相關標籤"
-#: conf/forum_data_rules.py:173
+#: conf/forum_data_rules.py:182
msgid ""
"Wildcard tags can be used to follow or ignore many tags at once, a valid "
"wildcard tag has a single wildcard at the very end"
msgstr ""
-#: conf/forum_data_rules.py:186
+#: conf/forum_data_rules.py:195
msgid "Default max number of comments to display under posts"
msgstr ""
-#: conf/forum_data_rules.py:197
+#: conf/forum_data_rules.py:206
#, python-format
msgid "Maximum comment length, must be < %(max_len)s"
msgstr ""
-#: conf/forum_data_rules.py:207
+#: conf/forum_data_rules.py:216
msgid "Limit time to edit comments"
msgstr ""
-#: conf/forum_data_rules.py:209
+#: conf/forum_data_rules.py:218
msgid "If unchecked, there will be no time limit to edit the comments"
msgstr ""
-#: conf/forum_data_rules.py:220
+#: conf/forum_data_rules.py:229
msgid "Minutes allowed to edit a comment"
msgstr ""
-#: conf/forum_data_rules.py:221
+#: conf/forum_data_rules.py:230
msgid "To enable this setting, check the previous one"
msgstr ""
-#: conf/forum_data_rules.py:230
+#: conf/forum_data_rules.py:239
msgid "Save comment by pressing <Enter> key"
msgstr ""
-#: conf/forum_data_rules.py:239
+#: conf/forum_data_rules.py:248
msgid "Minimum length of search term for Ajax search"
msgstr ""
-#: conf/forum_data_rules.py:240
+#: conf/forum_data_rules.py:249
msgid "Must match the corresponding database backend setting"
msgstr ""
-#: conf/forum_data_rules.py:249
+#: conf/forum_data_rules.py:258
msgid "Do not make text query sticky in search"
msgstr ""
-#: conf/forum_data_rules.py:251
+#: conf/forum_data_rules.py:260
msgid ""
"Check to disable the \"sticky\" behavior of the search query. This may be "
"useful if you want to move the search bar away from the default position or "
"do not like the default sticky behavior of the text search query."
msgstr ""
-#: conf/forum_data_rules.py:264
+#: conf/forum_data_rules.py:273
msgid "Maximum number of tags per question"
msgstr ""
-#: conf/forum_data_rules.py:276
+#: conf/forum_data_rules.py:285
#, fuzzy
msgid "Number of questions to list by default"
msgstr "含有問題的數目"
-#: conf/forum_data_rules.py:286
+#: conf/forum_data_rules.py:295
#, fuzzy
msgid "What should \"unanswered question\" mean?"
msgstr "無未解答問題"
+#: conf/ldap.py:9
+msgid "LDAP login configuration"
+msgstr ""
+
+#: conf/ldap.py:17
+msgid "Use LDAP authentication for the password login"
+msgstr ""
+
+#: conf/ldap.py:26
+msgid "LDAP URL"
+msgstr ""
+
+#: conf/ldap.py:35
+msgid "LDAP BASE DN"
+msgstr ""
+
+#: conf/ldap.py:43
+msgid "LDAP Search Scope"
+msgstr ""
+
+#: conf/ldap.py:52
+msgid "LDAP Server USERID field name"
+msgstr ""
+
+#: conf/ldap.py:61
+msgid "LDAP Server \"Common Name\" field name"
+msgstr ""
+
+#: conf/ldap.py:70
+msgid "LDAP Server EMAIL field name"
+msgstr ""
+
+#: conf/leading_sidebar.py:12
+#, fuzzy
+msgid "Common left sidebar"
+msgstr "問題標籤"
+
+#: conf/leading_sidebar.py:20
+#, fuzzy
+msgid "Enable left sidebar"
+msgstr "用戶資料"
+
+#: conf/leading_sidebar.py:29
+msgid "HTML for the left sidebar"
+msgstr ""
+
+#: conf/leading_sidebar.py:32
+msgid ""
+"Use this area to enter content at the LEFT sidebarin HTML format. When "
+"using this option, please use the HTML validation service to make sure that "
+"your input is valid and works well in all browsers."
+msgstr ""
+
#: conf/license.py:13
-msgid "Content LicensContent License"
+msgid "Content License"
msgstr ""
#: conf/license.py:21
@@ -1167,16 +1262,16 @@ msgid ""
"XML-RPC"
msgstr ""
-#: conf/login_providers.py:62
+#: conf/login_providers.py:60
msgid "Upload your icon"
msgstr ""
-#: conf/login_providers.py:92
+#: conf/login_providers.py:90
#, python-format
msgid "Activate %(provider)s login"
msgstr ""
-#: conf/login_providers.py:97
+#: conf/login_providers.py:95
#, python-format
msgid ""
"Note: to really enable %(provider)s login some additional parameters will "
@@ -1356,6 +1451,10 @@ msgid ""
"the link will not count towards the rank of the users personal site."
msgstr ""
+#: conf/minimum_reputation.py:190
+msgid "Post answers and comments by email"
+msgstr ""
+
#: conf/reputation_changes.py:13
msgid "Karma loss and gain rules"
msgstr ""
@@ -1559,28 +1658,28 @@ msgstr ""
msgid "Short name for your Q&A forum"
msgstr ""
-#: conf/site_settings.py:68
+#: conf/site_settings.py:67
msgid "Base URL for your Q&A forum, must start with http or https"
msgstr ""
-#: conf/site_settings.py:79
+#: conf/site_settings.py:78
msgid "Check to enable greeting for anonymous user"
msgstr ""
-#: conf/site_settings.py:90
+#: conf/site_settings.py:89
msgid "Text shown in the greeting message shown to the anonymous user"
msgstr ""
-#: conf/site_settings.py:94
+#: conf/site_settings.py:93
msgid "Use HTML to format the message "
msgstr ""
-#: conf/site_settings.py:103
+#: conf/site_settings.py:102
#, fuzzy
msgid "Feedback site URL"
msgstr "問題回饋"
-#: conf/site_settings.py:105
+#: conf/site_settings.py:104
msgid "If left empty, a simple internal feedback form will be used instead"
msgstr ""
@@ -1706,21 +1805,21 @@ msgstr "社區通用語"
msgid "To change the logo, select new file, then submit this whole form."
msgstr ""
-#: conf/skin_general_settings.py:39
+#: conf/skin_general_settings.py:37
msgid "Show logo"
msgstr ""
-#: conf/skin_general_settings.py:41
+#: conf/skin_general_settings.py:39
msgid ""
"Check if you want to show logo in the forum header or uncheck in the case "
"you do not want the logo to appear in the default location"
msgstr ""
-#: conf/skin_general_settings.py:53
+#: conf/skin_general_settings.py:51
msgid "Site favicon"
msgstr ""
-#: conf/skin_general_settings.py:55
+#: conf/skin_general_settings.py:53
#, python-format
msgid ""
"A small 16x16 or 32x32 pixel icon image used to distinguish your site in the "
@@ -1728,41 +1827,41 @@ msgid ""
"href=\"%(favicon_info_url)s\">this page</a>."
msgstr ""
-#: conf/skin_general_settings.py:73
+#: conf/skin_general_settings.py:69
msgid "Password login button"
msgstr ""
-#: conf/skin_general_settings.py:75
+#: conf/skin_general_settings.py:71
msgid ""
"An 88x38 pixel image that is used on the login screen for the password login "
"button."
msgstr ""
-#: conf/skin_general_settings.py:90
+#: conf/skin_general_settings.py:84
msgid "Show all UI functions to all users"
msgstr ""
-#: conf/skin_general_settings.py:92
+#: conf/skin_general_settings.py:86
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 ""
-#: conf/skin_general_settings.py:107
+#: conf/skin_general_settings.py:101
#, fuzzy
msgid "Select skin"
msgstr "選擇版本"
-#: conf/skin_general_settings.py:118
+#: conf/skin_general_settings.py:112
msgid "Customize HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:127
+#: conf/skin_general_settings.py:121
msgid "Custom portion of the HTML <HEAD>"
msgstr ""
-#: conf/skin_general_settings.py:129
+#: conf/skin_general_settings.py:123
msgid ""
"<strong>To use this option</strong>, check \"Customize HTML &lt;HEAD&gt;\" "
"above. Contents of this box will be inserted into the &lt;HEAD&gt; portion "
@@ -1774,11 +1873,11 @@ msgid ""
"please test the site with the W3C HTML validator service."
msgstr ""
-#: conf/skin_general_settings.py:151
+#: conf/skin_general_settings.py:145
msgid "Custom header additions"
msgstr ""
-#: conf/skin_general_settings.py:153
+#: conf/skin_general_settings.py:147
msgid ""
"Header is the bar at the top of the content that contains user info and site "
"links, and is common to all pages. Use this area to enter contents of the "
@@ -1787,21 +1886,21 @@ msgid ""
"sure that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:168
+#: conf/skin_general_settings.py:162
msgid "Site footer mode"
msgstr ""
-#: conf/skin_general_settings.py:170
+#: conf/skin_general_settings.py:164
msgid ""
"Footer is the bottom portion of the content, which is common to all pages. "
"You can disable, customize, or use the default footer."
msgstr ""
-#: conf/skin_general_settings.py:187
+#: conf/skin_general_settings.py:181
msgid "Custom footer (HTML format)"
msgstr ""
-#: conf/skin_general_settings.py:189
+#: conf/skin_general_settings.py:183
msgid ""
"<strong>To enable this function</strong>, please select option 'customize' "
"in the \"Site footer mode\" above. Use this area to enter contents of the "
@@ -1810,21 +1909,21 @@ msgid ""
"that your input is valid and works well in all browsers."
msgstr ""
-#: conf/skin_general_settings.py:204
+#: conf/skin_general_settings.py:198
msgid "Apply custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:206
+#: conf/skin_general_settings.py:200
msgid ""
"Check if you want to change appearance of your form by adding custom style "
"sheet rules (please see the next item)"
msgstr ""
-#: conf/skin_general_settings.py:218
+#: conf/skin_general_settings.py:212
msgid "Custom style sheet (CSS)"
msgstr ""
-#: conf/skin_general_settings.py:220
+#: conf/skin_general_settings.py:214
msgid ""
"<strong>To use this function</strong>, check \"Apply custom style sheet\" "
"option above. The CSS rules added in this window will be applied after the "
@@ -1833,19 +1932,19 @@ msgid ""
"depends (default is empty string) on the url configuration in your urls.py."
msgstr ""
-#: conf/skin_general_settings.py:236
+#: conf/skin_general_settings.py:230
msgid "Add custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:239
+#: conf/skin_general_settings.py:233
msgid "Check to enable javascript that you can enter in the next field"
msgstr ""
-#: conf/skin_general_settings.py:249
+#: conf/skin_general_settings.py:243
msgid "Custom javascript"
msgstr ""
-#: conf/skin_general_settings.py:251
+#: conf/skin_general_settings.py:245
msgid ""
"Type or paste plain javascript that you would like to run on your site. Link "
"to the script will be inserted at the bottom of the HTML output and will be "
@@ -1856,19 +1955,19 @@ msgid ""
"above)."
msgstr ""
-#: conf/skin_general_settings.py:269
+#: conf/skin_general_settings.py:263
msgid "Skin media revision number"
msgstr ""
-#: conf/skin_general_settings.py:271
+#: conf/skin_general_settings.py:265
msgid "Will be set automatically but you can modify it if necessary."
msgstr ""
-#: conf/skin_general_settings.py:282
+#: conf/skin_general_settings.py:276
msgid "Hash to update the media revision number automatically."
msgstr ""
-#: conf/skin_general_settings.py:286
+#: conf/skin_general_settings.py:280
msgid "Will be set automatically, it is not necesary to modify manually."
msgstr ""
@@ -1935,40 +2034,67 @@ msgstr "其他服務"
msgid "Login, Users & Communication"
msgstr ""
-#: conf/user_settings.py:12
+#: conf/user_settings.py:14
#, fuzzy
msgid "User settings"
msgstr "用戶參數的設置"
-#: conf/user_settings.py:21
+#: conf/user_settings.py:23
msgid "Allow editing user screen name"
msgstr ""
-#: conf/user_settings.py:30
+#: conf/user_settings.py:32
+#, fuzzy
+msgid "Allow users change own email addresses"
+msgstr "您的電子郵件地址"
+
+#: conf/user_settings.py:41
#, fuzzy
msgid "Allow account recovery by email"
msgstr "修改電子郵件"
-#: conf/user_settings.py:39
+#: conf/user_settings.py:50
msgid "Allow adding and removing login methods"
msgstr ""
-#: conf/user_settings.py:49
+#: conf/user_settings.py:60
msgid "Minimum allowed length for screen name"
msgstr ""
-#: conf/user_settings.py:59
+#: conf/user_settings.py:68
+msgid "Default avatar for users"
+msgstr ""
+
+#: conf/user_settings.py:70
+msgid ""
+"To change the avatar image, select new file, then submit this whole form."
+msgstr ""
+
+#: conf/user_settings.py:83
+msgid "Use automatic avatars from gravatar.com"
+msgstr ""
+
+#: conf/user_settings.py:85
+msgid ""
+"Check this option if you want to allow the use of gravatar.com for avatars. "
+"Please, note that this feature might take about 10 minutes to become fully "
+"effective. You will have to enable uploaded avatars as well. For more "
+"information, please visit <a href=\"http://askbot.org/doc/optional-modules."
+"html#uploaded-avatars\">this page</a>."
+msgstr ""
+
+#: conf/user_settings.py:97
msgid "Default Gravatar icon type"
msgstr ""
-#: conf/user_settings.py:61
+#: conf/user_settings.py:99
msgid ""
"This option allows you to set the default avatar type for email addresses "
"without associated gravatar images. For more information, please visit <a "
"href=\"http://en.gravatar.com/site/implement/images/\">this page</a>."
msgstr ""
-#: conf/user_settings.py:71
+#: conf/user_settings.py:109
msgid "Name for the Anonymous user"
msgstr ""
@@ -2080,353 +2206,366 @@ msgstr "垃圾廣告"
msgid "too localized"
msgstr "太區域化"
-#: const/__init__.py:41
+#: const/__init__.py:43
+#: skins/default/templates/question/answer_tab_bar.html:18
msgid "newest"
msgstr "最新問題"
-#: const/__init__.py:42 skins/default/templates/users.html:27
+#: const/__init__.py:44 skins/default/templates/users.html:27
+#: skins/default/templates/question/answer_tab_bar.html:15
msgid "oldest"
msgstr "最先加入"
-#: const/__init__.py:43
+#: const/__init__.py:45
msgid "active"
msgstr "熱門問題"
-#: const/__init__.py:44
+#: const/__init__.py:46
msgid "inactive"
msgstr "冷門問題"
-#: const/__init__.py:45
+#: const/__init__.py:47
msgid "hottest"
msgstr "火熱問題"
-#: const/__init__.py:46
+#: const/__init__.py:48
msgid "coldest"
msgstr "過時"
# "最有價值問題"
# "最新問題"
-#: const/__init__.py:47
+#: const/__init__.py:49
+#: skins/default/templates/question/answer_tab_bar.html:21
msgid "most voted"
msgstr "最有價值的問題"
# "最有價值問題"
# "最新問題"
-#: const/__init__.py:48
+#: const/__init__.py:50
msgid "least voted"
msgstr "最不被推薦的問題"
-#: const/__init__.py:49
+#: const/__init__.py:51
msgid "relevance"
msgstr "關聯"
-#: const/__init__.py:57
+#: const/__init__.py:63
#: skins/default/templates/user_profile/user_inbox.html:50
+#: skins/default/templates/user_profile/user_inbox.html:62
msgid "all"
msgstr "全部"
-#: const/__init__.py:58
+#: const/__init__.py:64
msgid "unanswered"
msgstr "尚未回答"
-#: const/__init__.py:59
+#: const/__init__.py:65
msgid "favorite"
msgstr "喜歡"
-#: const/__init__.py:64
+#: const/__init__.py:70
#, fuzzy
msgid "list"
msgstr "標籤列表"
-#: const/__init__.py:65
+#: const/__init__.py:71
msgid "cloud"
msgstr ""
-#: const/__init__.py:78
+#: const/__init__.py:79
#, fuzzy
msgid "Question has no answers"
msgstr "已回答的問題"
-#: const/__init__.py:79
+#: const/__init__.py:80
#, fuzzy
msgid "Question has no accepted answers"
msgstr "已回答的問題"
-#: const/__init__.py:122
+#: const/__init__.py:125
#, fuzzy
msgid "asked a question"
msgstr "我要提問"
-#: const/__init__.py:123
+#: const/__init__.py:126
#, fuzzy
msgid "answered a question"
msgstr "沒有回答的問題"
-#: const/__init__.py:124
+#: const/__init__.py:127 const/__init__.py:203
msgid "commented question"
msgstr "評論問題"
-#: const/__init__.py:125
+#: const/__init__.py:128 const/__init__.py:204
msgid "commented answer"
msgstr "有評論回答"
-#: const/__init__.py:126
+#: const/__init__.py:129
msgid "edited question"
msgstr "修改問題"
-#: const/__init__.py:127
+#: const/__init__.py:130
msgid "edited answer"
msgstr "修改回答"
-#: const/__init__.py:128
-msgid "received award"
+#: const/__init__.py:131
+#, fuzzy
+msgid "received badge"
msgstr "獲獎"
-#: const/__init__.py:129
+#: const/__init__.py:132
msgid "marked best answer"
msgstr "標記最佳答案"
-#: const/__init__.py:130
+#: const/__init__.py:133
msgid "upvoted"
msgstr "投贊成票"
-#: const/__init__.py:131
+#: const/__init__.py:134
msgid "downvoted"
msgstr "投反對票"
-#: const/__init__.py:132
+#: const/__init__.py:135
msgid "canceled vote"
msgstr "撤銷投票"
-#: const/__init__.py:133
+#: const/__init__.py:136
msgid "deleted question"
msgstr "刪除問題"
-#: const/__init__.py:134
+#: const/__init__.py:137
msgid "deleted answer"
msgstr "刪除回答"
-#: const/__init__.py:135
+#: const/__init__.py:138
msgid "marked offensive"
msgstr "標記垃圾帖"
-#: const/__init__.py:136
+#: const/__init__.py:139
msgid "updated tags"
msgstr "更新標籤"
-#: const/__init__.py:137
+#: const/__init__.py:140
msgid "selected favorite"
msgstr "收藏"
-#: const/__init__.py:138
+#: const/__init__.py:141
msgid "completed user profile"
msgstr "完成個人所有資料"
-#: const/__init__.py:139
+#: const/__init__.py:142
msgid "email update sent to user"
msgstr "Email 更改已通知"
-#: const/__init__.py:142
+#: const/__init__.py:145
#, fuzzy
msgid "reminder about unanswered questions sent"
msgstr "沒有回答的問題"
-#: const/__init__.py:146
+#: const/__init__.py:149
#, fuzzy
msgid "reminder about accepting the best answer sent"
msgstr "標記最佳答案"
-#: const/__init__.py:148
+#: const/__init__.py:151
msgid "mentioned in the post"
msgstr ""
-#: const/__init__.py:199
-msgid "question_answered"
-msgstr ""
-
-#: const/__init__.py:200
-msgid "question_commented"
-msgstr ""
-
-#: const/__init__.py:201
-msgid "answer_commented"
-msgstr ""
-
#: const/__init__.py:202
-msgid "answer_accepted"
-msgstr ""
+#, fuzzy
+msgid "answered question"
+msgstr "沒有回答的問題"
+
+#: const/__init__.py:205
+#, fuzzy
+msgid "accepted answer"
+msgstr "修改回答"
-#: const/__init__.py:206
+#: const/__init__.py:209
msgid "[closed]"
msgstr "[已關閉]"
-#: const/__init__.py:207
+#: const/__init__.py:210
msgid "[deleted]"
msgstr "[已刪除]"
-#: const/__init__.py:208 views/readers.py:590
+#: const/__init__.py:211 views/readers.py:566
msgid "initial version"
msgstr "初始版本"
-#: const/__init__.py:209
+#: const/__init__.py:212
msgid "retagged"
msgstr "更新了標籤"
-#: const/__init__.py:217
+#: const/__init__.py:220
msgid "off"
msgstr ""
-#: const/__init__.py:218
+#: const/__init__.py:221
#, fuzzy
msgid "exclude ignored"
msgstr "特殊忽略標籤"
-#: const/__init__.py:219
+#: const/__init__.py:222
#, fuzzy
msgid "only selected"
msgstr "個別選定"
-#: const/__init__.py:223
+#: const/__init__.py:226
msgid "instantly"
msgstr ""
-#: const/__init__.py:224
+#: const/__init__.py:227
msgid "daily"
msgstr "每天"
-#: const/__init__.py:225
+#: const/__init__.py:228
msgid "weekly"
msgstr "每星期"
-#: const/__init__.py:226
+#: const/__init__.py:229
#, fuzzy
msgid "no email"
msgstr "更換電子郵件"
-#: const/__init__.py:233
+#: const/__init__.py:236
msgid "identicon"
msgstr ""
-#: const/__init__.py:234
+#: const/__init__.py:237
#, fuzzy
msgid "mystery-man"
msgstr "昨天"
-#: const/__init__.py:235
+#: const/__init__.py:238
msgid "monsterid"
msgstr ""
-#: const/__init__.py:236
+#: const/__init__.py:239
#, fuzzy
msgid "wavatar"
msgstr "大頭像"
-#: const/__init__.py:237
+#: const/__init__.py:240
msgid "retro"
msgstr ""
-#: const/__init__.py:284 skins/default/templates/badges.html:37
+#: const/__init__.py:287 skins/default/templates/badges.html:38
msgid "gold"
msgstr "第一名"
-#: const/__init__.py:285 skins/default/templates/badges.html:46
+#: const/__init__.py:288 skins/default/templates/badges.html:48
msgid "silver"
msgstr "第二名"
-#: const/__init__.py:286 skins/default/templates/badges.html:53
+#: const/__init__.py:289 skins/default/templates/badges.html:55
msgid "bronze"
msgstr "第三名"
-#: const/__init__.py:298
+#: const/__init__.py:301
msgid "None"
msgstr ""
-#: const/__init__.py:299
+#: const/__init__.py:302
#, fuzzy
msgid "Gravatar"
msgstr "大頭像"
-#: const/__init__.py:300
+#: const/__init__.py:303
msgid "Uploaded Avatar"
msgstr ""
-#: const/message_keys.py:15
+#: const/message_keys.py:21
#, fuzzy
msgid "most relevant questions"
msgstr "最新加入的問題"
-#: const/message_keys.py:16
+#: const/message_keys.py:22
#, fuzzy
msgid "click to see most relevant questions"
msgstr "點選觀看投票次數最多的問題"
-#: const/message_keys.py:17
+#: const/message_keys.py:23
#, fuzzy
msgid "by relevance"
msgstr "關聯"
-#: const/message_keys.py:18
+#: const/message_keys.py:24
msgid "click to see the oldest questions"
msgstr "點選觀看最早問題"
-#: const/message_keys.py:19
+#: const/message_keys.py:25
#, fuzzy
msgid "by date"
msgstr "更新"
-#: const/message_keys.py:20
+#: const/message_keys.py:26
msgid "click to see the newest questions"
msgstr "點選觀看最新問題"
-#: const/message_keys.py:21
+#: const/message_keys.py:27
msgid "click to see the least recently updated questions"
msgstr "點選觀看最近最少被更新的問題"
-#: const/message_keys.py:22
+#: const/message_keys.py:28
#, fuzzy
msgid "by activity"
msgstr "熱門問題"
-#: const/message_keys.py:23
+#: const/message_keys.py:29
msgid "click to see the most recently updated questions"
msgstr "點選觀看最近最常被更新的問題"
-#: const/message_keys.py:24
+#: const/message_keys.py:30
#, fuzzy
msgid "click to see the least answered questions"
msgstr "點選觀看最早問題"
-#: const/message_keys.py:25
+#: const/message_keys.py:31
#, fuzzy
msgid "by answers"
msgstr "回答"
-#: const/message_keys.py:26
+#: const/message_keys.py:32
#, fuzzy
msgid "click to see the most answered questions"
msgstr "點選觀看投票次數最多的問題"
-#: const/message_keys.py:27
+#: const/message_keys.py:33
#, fuzzy
msgid "click to see least voted questions"
msgstr "點選觀看投票次數最少的問題"
-#: const/message_keys.py:28
+#: const/message_keys.py:34
#, fuzzy
msgid "by votes"
msgstr "投票"
-#: const/message_keys.py:29
+#: const/message_keys.py:35
msgid "click to see most voted questions"
msgstr "點選觀看投票次數最多的問題"
-#: deps/django_authopenid/backends.py:88
+#: const/message_keys.py:40
+msgid ""
+"Sorry, your account appears to be blocked and you cannot make new posts "
+"until this issue is resolved. Please contact the forum administrator to "
+"reach a resolution."
+msgstr ""
+
+#: const/message_keys.py:45 models/__init__.py:788
+msgid ""
+"Sorry, your account appears to be suspended and you cannot make new posts "
+"until this issue is resolved. You can, however edit your existing posts. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
+
+#: deps/django_authopenid/backends.py:166
msgid ""
"Welcome! Please set email address (important!) in your profile and adjust "
"screen name, if necessary."
msgstr ""
-#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151
+#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:142
msgid "i-names are not supported"
msgstr "不支援 i-name "
@@ -2478,11 +2617,12 @@ msgid "Your user name (<i>required</i>)"
msgstr " 使用者名稱 (<i>required</i>)"
#: deps/django_authopenid/forms.py:450
-msgid "Incorrect username."
-msgstr "選擇一個用戶名"
+#, fuzzy
+msgid "sorry, there is no such user name"
+msgstr "對不起,沒有此用戶"
#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12
-#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:208
+#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:210
msgid "signin/"
msgstr ""
@@ -2522,7 +2662,7 @@ msgid "%(site)s user name and password"
msgstr "使用帳號密碼登錄"
#: deps/django_authopenid/util.py:384
-#: skins/common/templates/authopenid/signin.html:108
+#: skins/common/templates/authopenid/signin.html:115
msgid "Create a password-protected account"
msgstr ""
@@ -2616,79 +2756,79 @@ msgstr "使用帳號密碼登錄"
msgid "Sign in with your %(provider)s account"
msgstr ""
-#: deps/django_authopenid/views.py:158
+#: deps/django_authopenid/views.py:149
#, python-format
msgid "OpenID %(openid_url)s is invalid"
msgstr "OpenID %(openid_url)s 無效"
-#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:421
-#: deps/django_authopenid/views.py:449
+#: deps/django_authopenid/views.py:261 deps/django_authopenid/views.py:408
+#: deps/django_authopenid/views.py:436
#, python-format
msgid ""
"Unfortunately, there was some problem when connecting to %(provider)s, "
"please try again or use another provider"
msgstr ""
-#: deps/django_authopenid/views.py:371
+#: deps/django_authopenid/views.py:358
#, fuzzy
msgid "Your new password saved"
msgstr "密碼已更改"
-#: deps/django_authopenid/views.py:475
+#: deps/django_authopenid/views.py:462
msgid "The login password combination was not correct"
msgstr ""
-#: deps/django_authopenid/views.py:577
+#: deps/django_authopenid/views.py:564
msgid "Please click any of the icons below to sign in"
msgstr ""
-#: deps/django_authopenid/views.py:579
+#: deps/django_authopenid/views.py:566
#, fuzzy
msgid "Account recovery email sent"
msgstr "修改電子郵件"
-#: deps/django_authopenid/views.py:582
+#: deps/django_authopenid/views.py:569
msgid "Please add one or more login methods."
msgstr ""
-#: deps/django_authopenid/views.py:584
+#: deps/django_authopenid/views.py:571
msgid "If you wish, please add, remove or re-validate your login methods"
msgstr ""
-#: deps/django_authopenid/views.py:586
+#: deps/django_authopenid/views.py:573
msgid "Please wait a second! Your account is recovered, but ..."
msgstr ""
-#: deps/django_authopenid/views.py:588
+#: deps/django_authopenid/views.py:575
msgid "Sorry, this account recovery key has expired or is invalid"
msgstr ""
-#: deps/django_authopenid/views.py:661
+#: deps/django_authopenid/views.py:648
#, python-format
msgid "Login method %(provider_name)s does not exist"
msgstr ""
-#: deps/django_authopenid/views.py:667
+#: deps/django_authopenid/views.py:654
#, fuzzy
msgid "Oops, sorry - there was some error - please try again"
msgstr "對不起, 密碼不合, 請重新輸入"
-#: deps/django_authopenid/views.py:758
+#: deps/django_authopenid/views.py:745
#, python-format
msgid "Your %(provider)s login works fine"
msgstr ""
-#: deps/django_authopenid/views.py:1069 deps/django_authopenid/views.py:1075
+#: deps/django_authopenid/views.py:1056 deps/django_authopenid/views.py:1062
#, python-format
msgid "your email needs to be validated see %(details_url)s"
msgstr "email 須經認證, 參考 %(details_url)s"
-#: deps/django_authopenid/views.py:1096
+#: deps/django_authopenid/views.py:1083
#, fuzzy, python-format
msgid "Recover your %(site)s account"
msgstr "請設新密碼"
-#: deps/django_authopenid/views.py:1166
+#: deps/django_authopenid/views.py:1155
msgid "Please check your email and visit the enclosed link."
msgstr ""
@@ -2697,30 +2837,30 @@ msgstr ""
msgid "Site"
msgstr "標題"
-#: deps/livesettings/values.py:68
+#: deps/livesettings/values.py:69
msgid "Main"
msgstr ""
-#: deps/livesettings/values.py:127
+#: deps/livesettings/values.py:128
#, fuzzy
msgid "Base Settings"
msgstr "帳號設置"
-#: deps/livesettings/values.py:234
+#: deps/livesettings/values.py:235
msgid "Default value: \"\""
msgstr ""
-#: deps/livesettings/values.py:241
+#: deps/livesettings/values.py:242
msgid "Default value: "
msgstr ""
-#: deps/livesettings/values.py:244
+#: deps/livesettings/values.py:245
#, python-format
msgid "Default value: %s"
msgstr ""
# todo take these out of settings
-#: deps/livesettings/values.py:622
+#: deps/livesettings/values.py:629
#, fuzzy, python-format
msgid "Allowed image file types are %(types)s"
msgstr "只允許上傳 '%(file_types)s' 類型的文件!"
@@ -2738,7 +2878,7 @@ msgstr "城市"
#: deps/livesettings/templates/livesettings/group_settings.html:11
#: deps/livesettings/templates/livesettings/site_settings.html:23
-#: skins/common/templates/authopenid/signin.html:132
+#: skins/common/templates/authopenid/signin.html:143
msgid "Change password"
msgstr "修改密碼"
@@ -2805,115 +2945,52 @@ msgstr ""
msgid "Congratulations, you are now an Administrator"
msgstr ""
-#: management/commands/initialize_ldap_logins.py:51
-msgid ""
-"This command may help you migrate to LDAP password authentication by "
-"creating a record for LDAP association with each user account. There is an "
-"assumption that ldap user id's are the same as user names registered at the "
-"site. Before running this command it is necessary to set up LDAP parameters "
-"in the \"External keys\" section of the site settings."
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:35
-msgid ""
-"<p>To ask by email, please:</p>\n"
-"<ul>\n"
-" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
-" <li>Type details of your question into the email body</li>\n"
-"</ul>\n"
-"<p>Note that tags may consist of more than one word, and tags\n"
-"may be separated by a semicolon or a comma</p>\n"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:55
-#, python-format
-msgid ""
-"<p>Sorry, there was an error posting your question please contact the "
-"%(site)s administrator</p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:61
-#, python-format
-msgid ""
-"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
-"\"%(url)s\">register first</a></p>"
-msgstr ""
-
-#: management/commands/post_emailed_questions.py:69
-msgid ""
-"<p>Sorry, your question could not be posted due to insufficient privileges "
-"of your user account</p>"
-msgstr ""
-
-#: management/commands/send_accept_answer_reminders.py:57
+#: management/commands/send_accept_answer_reminders.py:58
#, python-format
msgid "Accept the best answer for %(question_count)d of your questions"
msgstr ""
-#: management/commands/send_accept_answer_reminders.py:62
+#: management/commands/send_accept_answer_reminders.py:63
#, fuzzy
msgid "Please accept the best answer for this question:"
msgstr "這問題的第一個解答者"
-#: management/commands/send_accept_answer_reminders.py:64
+#: management/commands/send_accept_answer_reminders.py:65
#, fuzzy
msgid "Please accept the best answer for these questions:"
msgstr "點選觀看最早問題"
-#: management/commands/send_email_alerts.py:411
+#: management/commands/send_email_alerts.py:414
#, python-format
msgid "%(question_count)d updated question about %(topics)s"
msgid_plural "%(question_count)d updated questions about %(topics)s"
msgstr[0] ""
-#: management/commands/send_email_alerts.py:421
+#: management/commands/send_email_alerts.py:425
#, 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"
+msgid ""
+"<p>Dear %(name)s,</p><p>The following question has been updated "
+"%(sitename)s</p>"
+msgid_plural ""
+"<p>Dear %(name)s,</p><p>The following %(num)d questions have been updated on "
+"%(sitename)s:</p>"
msgstr[0] ""
-#: management/commands/send_email_alerts.py:438
+#: management/commands/send_email_alerts.py:449
msgid "new question"
msgstr "提問"
-#: management/commands/send_email_alerts.py:455
-#, fuzzy
-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 " 請參觀論壇, 觀看新功能介紹! 並廣為宣傳 - 能否解答或從中獲益?"
-
-#: management/commands/send_email_alerts.py:465
-#, fuzzy
-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 "你設定訂閱每日查詢, 如果每天收到信件超夠一封, 請告知管理者."
-
-#: management/commands/send_email_alerts.py:471
-#, fuzzy
-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 "你設定訂閱每周查詢, 如果每周收到信件超夠一封, 請告知管理者."
-
-#: management/commands/send_email_alerts.py:477
-msgid ""
-"There is a chance that you may be receiving links seen before - due to a "
-"technicality that will eventually go away. "
-msgstr "你有可能收到之前看過的連結, 此肇因於即將終止的技術."
-
-#: management/commands/send_email_alerts.py:490
-#, fuzzy, python-format
+#: management/commands/send_email_alerts.py:474
+#, python-format
msgid ""
-"go to %(email_settings_link)s to change frequency of email updates or "
-"%(admin_email)s administrator"
-msgstr "請至 %(link)s 更改收信頻率或管理者的 %(email)s "
+"<p>Please remember that you can always <a hrefl\"%(email_settings_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 %(admin_email)s.</p><p>Sincerely,</p><p>Your "
+"friendly %(sitename)s server.</p>"
+msgstr ""
-#: management/commands/send_unanswered_question_reminders.py:56
+#: management/commands/send_unanswered_question_reminders.py:60
#, python-format
msgid "%(question_count)d unanswered question about %(topics)s"
msgid_plural "%(question_count)d unanswered questions about %(topics)s"
@@ -2924,85 +3001,77 @@ msgstr[0] ""
msgid "Please log in to use %s"
msgstr "歡迎提問! "
-#: models/__init__.py:317
+#: models/__init__.py:320
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"blocked"
msgstr ""
-#: models/__init__.py:321
+#: models/__init__.py:324
msgid ""
"Sorry, you cannot accept or unaccept best answers because your account is "
"suspended"
msgstr ""
-#: models/__init__.py:334
+#: models/__init__.py:337
#, fuzzy, python-format
msgid ""
">%(points)s points required to accept or unaccept your own answer to your "
"own question"
msgstr "首次可以接受的答案"
-#: models/__init__.py:356
+#: models/__init__.py:359
#, python-format
msgid ""
"Sorry, you will be able to accept this answer only after %(will_be_able_at)s"
msgstr ""
-#: models/__init__.py:364
+#: models/__init__.py:367
#, python-format
msgid ""
"Sorry, only moderators or original author of the question - %(username)s - "
"can accept or unaccept the best answer"
msgstr ""
-#: models/__init__.py:392
-msgid "cannot vote for own posts"
+#: models/__init__.py:390
+#, fuzzy
+msgid "Sorry, you cannot vote for your own posts"
msgstr "不能給自己的帖子投票"
-#: models/__init__.py:395
+#: models/__init__.py:394
msgid "Sorry your account appears to be blocked "
msgstr ""
-#: models/__init__.py:400
+#: models/__init__.py:399
msgid "Sorry your account appears to be suspended "
msgstr ""
-#: models/__init__.py:410
+#: models/__init__.py:409
#, fuzzy, python-format
msgid ">%(points)s points required to upvote"
msgstr "需要 >%(points)s 積分才能投支持票。"
-#: models/__init__.py:416
+#: models/__init__.py:415
#, python-format
msgid ">%(points)s points required to downvote"
msgstr "需要+%(points)s積分才能投反對票。"
-#: models/__init__.py:431
+#: models/__init__.py:430
#, fuzzy
msgid "Sorry, blocked users cannot upload files"
msgstr "被隔離使用者不能張貼"
-#: models/__init__.py:432
+#: models/__init__.py:431
#, fuzzy
msgid "Sorry, suspended users cannot upload files"
msgstr "被停用使用者不能張貼"
-#: models/__init__.py:434
+#: models/__init__.py:433
#, python-format
-msgid ""
-"uploading images is limited to users with >%(min_rep)s reputation points"
-msgstr "上傳圖片只限於積分 >%(min_rep)s 以上注冊用戶!"
-
-#: models/__init__.py:453 models/__init__.py:520 models/__init__.py:986
-msgid "blocked users cannot post"
-msgstr "被隔離使用者不能張貼"
-
-#: models/__init__.py:454 models/__init__.py:989
-msgid "suspended users cannot post"
-msgstr "被停用使用者不能張貼"
+msgid "sorry, file uploading requires karma >%(min_rep)s"
+msgstr ""
-#: models/__init__.py:481
+#: models/__init__.py:482
#, python-format
msgid ""
"Sorry, comments (except the last one) are editable only within %(minutes)s "
@@ -3012,56 +3081,56 @@ msgid_plural ""
"minutes from posting"
msgstr[0] ""
-#: models/__init__.py:493
+#: models/__init__.py:494
msgid "Sorry, but only post owners or moderators can edit comments"
msgstr ""
-#: models/__init__.py:506
+#: models/__init__.py:519
msgid ""
"Sorry, since your account is suspended you can comment only your own posts"
msgstr ""
-#: models/__init__.py:510
+#: models/__init__.py:523
#, 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 ""
-#: models/__init__.py:538
+#: models/__init__.py:553
msgid ""
"This post has been deleted and can be seen only by post owners, site "
"administrators and moderators"
msgstr ""
-#: models/__init__.py:555
+#: models/__init__.py:570
msgid ""
"Sorry, only moderators, site administrators and post owners can edit deleted "
"posts"
msgstr ""
-#: models/__init__.py:570
+#: models/__init__.py:585
msgid "Sorry, since your account is blocked you cannot edit posts"
msgstr ""
-#: models/__init__.py:574
+#: models/__init__.py:589
msgid "Sorry, since your account is suspended you can edit only your own posts"
msgstr ""
-#: models/__init__.py:579
+#: models/__init__.py:594
#, python-format
msgid ""
"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:586
+#: models/__init__.py:601
#, python-format
msgid ""
"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:649
+#: models/__init__.py:664
msgid ""
"Sorry, cannot delete your question since it has an upvoted answer posted by "
"someone else"
@@ -3070,270 +3139,270 @@ msgid_plural ""
"by other users"
msgstr[0] ""
-#: models/__init__.py:664
+#: models/__init__.py:679
msgid "Sorry, since your account is blocked you cannot delete posts"
msgstr ""
-#: models/__init__.py:668
+#: models/__init__.py:683
msgid ""
"Sorry, since your account is suspended you can delete only your own posts"
msgstr ""
-#: models/__init__.py:672
+#: models/__init__.py:687
#, python-format
msgid ""
"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s "
"is required"
msgstr ""
-#: models/__init__.py:692
+#: models/__init__.py:707
msgid "Sorry, since your account is blocked you cannot close questions"
msgstr ""
-#: models/__init__.py:696
+#: models/__init__.py:711
msgid "Sorry, since your account is suspended you cannot close questions"
msgstr ""
-#: models/__init__.py:700
+#: models/__init__.py:715
#, python-format
msgid ""
"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is "
"required"
msgstr ""
-#: models/__init__.py:709
+#: models/__init__.py:724
#, python-format
msgid ""
"Sorry, to close own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:733
+#: models/__init__.py:748
#, python-format
msgid ""
"Sorry, only administrators, moderators or post owners with reputation > "
"%(min_rep)s can reopen questions."
msgstr ""
-#: models/__init__.py:739
+#: models/__init__.py:754
#, python-format
msgid ""
"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:759
-msgid "cannot flag message as offensive twice"
+#: models/__init__.py:775
+msgid "You have flagged this question before and cannot do it more than once"
msgstr ""
-#: models/__init__.py:764
-#, fuzzy
-msgid "blocked users cannot flag posts"
-msgstr "被隔離使用者不能張貼"
-
-#: models/__init__.py:766
-#, fuzzy
-msgid "suspended users cannot flag posts"
-msgstr "被停用使用者不能張貼"
+#: models/__init__.py:783
+msgid "Sorry, since your account is blocked you cannot flag posts as offensive"
+msgstr ""
-#: models/__init__.py:768
+#: models/__init__.py:794
#, python-format
-msgid "need > %(min_rep)s points to flag spam"
+msgid ""
+"Sorry, to flag posts as offensive a minimum reputation of %(min_rep)s is "
+"required"
msgstr ""
-#: models/__init__.py:787
+#: models/__init__.py:815
#, python-format
-msgid "%(max_flags_per_day)s exceeded"
+msgid ""
+"Sorry, you have exhausted the maximum number of %(max_flags_per_day)s "
+"offensive flags per day."
msgstr ""
-#: models/__init__.py:798
+#: models/__init__.py:827
msgid "cannot remove non-existing flag"
msgstr ""
-#: models/__init__.py:803
+#: models/__init__.py:833
#, fuzzy
-msgid "blocked users cannot remove flags"
+msgid "Sorry, since your account is blocked you cannot remove flags"
msgstr "被隔離使用者不能張貼"
-#: models/__init__.py:805
-#, fuzzy
-msgid "suspended users cannot remove flags"
-msgstr "被停用使用者不能張貼"
+#: models/__init__.py:837
+msgid ""
+"Sorry, your account appears to be suspended and you cannot remove flags. "
+"Please contact the forum administrator to reach a resolution."
+msgstr ""
-#: models/__init__.py:809
+#: models/__init__.py:843
#, python-format
-msgid "need > %(min_rep)d point to remove flag"
-msgid_plural "need > %(min_rep)d points to remove flag"
+msgid "Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
+msgid_plural ""
+"Sorry, to flag posts a minimum reputation of %(min_rep)d is required"
msgstr[0] ""
-#: models/__init__.py:828
+#: models/__init__.py:862
msgid "you don't have the permission to remove all flags"
msgstr ""
-#: models/__init__.py:829
+#: models/__init__.py:863
msgid "no flags for this entry"
msgstr ""
-#: models/__init__.py:853
+#: models/__init__.py:887
msgid ""
"Sorry, only question owners, site administrators and moderators can retag "
"deleted questions"
msgstr ""
-#: models/__init__.py:860
+#: models/__init__.py:894
msgid "Sorry, since your account is blocked you cannot retag questions"
msgstr ""
-#: models/__init__.py:864
+#: models/__init__.py:898
msgid ""
"Sorry, since your account is suspended you can retag only your own questions"
msgstr ""
-#: models/__init__.py:868
+#: models/__init__.py:902
#, python-format
msgid ""
"Sorry, to retag questions a minimum reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:887
+#: models/__init__.py:921
msgid "Sorry, since your account is blocked you cannot delete comment"
msgstr ""
-#: models/__init__.py:891
+#: models/__init__.py:925
msgid ""
"Sorry, since your account is suspended you can delete only your own comments"
msgstr ""
-#: models/__init__.py:895
+#: models/__init__.py:929
#, python-format
msgid "Sorry, to delete comments reputation of %(min_rep)s is required"
msgstr ""
-#: models/__init__.py:918
-msgid "cannot revoke old vote"
-msgstr "這個投票已經過時,不能撤銷。"
+#: models/__init__.py:953
+msgid "sorry, but older votes cannot be revoked"
+msgstr ""
-#: models/__init__.py:1395 utils/functions.py:70
+#: models/__init__.py:1469 utils/functions.py:78
#, python-format
msgid "on %(date)s"
msgstr ""
-#: models/__init__.py:1397
+#: models/__init__.py:1471
#, fuzzy
msgid "in two days"
msgstr "登錄並回答該問題"
-#: models/__init__.py:1399
+#: models/__init__.py:1473
msgid "tomorrow"
msgstr ""
-#: models/__init__.py:1401
+#: models/__init__.py:1475
#, python-format
msgid "in %(hr)d hour"
msgid_plural "in %(hr)d hours"
msgstr[0] ""
-#: models/__init__.py:1403
+#: models/__init__.py:1477
#, python-format
msgid "in %(min)d min"
msgid_plural "in %(min)d mins"
msgstr[0] ""
-#: models/__init__.py:1404
+#: models/__init__.py:1478
#, python-format
msgid "%(days)d day"
msgid_plural "%(days)d days"
msgstr[0] ""
-#: models/__init__.py:1406
+#: models/__init__.py:1480
#, python-format
msgid ""
"New users must wait %(days)s before answering their own question. You can "
"post an answer %(left)s"
msgstr ""
-#: models/__init__.py:1572 skins/default/templates/feedback_email.txt:9
+#: models/__init__.py:1653 skins/default/templates/feedback_email.txt:9
#, fuzzy
msgid "Anonymous"
msgstr "匿名者"
-#: models/__init__.py:1668 views/users.py:372
+#: models/__init__.py:1749
#, fuzzy
msgid "Site Adminstrator"
msgstr ""
"你好, \n"
" 論壇管理者"
-#: models/__init__.py:1670 views/users.py:374
+#: models/__init__.py:1751
msgid "Forum Moderator"
msgstr ""
-#: models/__init__.py:1672 views/users.py:376
+#: models/__init__.py:1753
#, fuzzy
msgid "Suspended User"
msgstr "送出人為"
-#: models/__init__.py:1674 views/users.py:378
+#: models/__init__.py:1755
msgid "Blocked User"
msgstr ""
-#: models/__init__.py:1676 views/users.py:380
+#: models/__init__.py:1757
#, fuzzy
msgid "Registered User"
msgstr "註冊用戶"
-#: models/__init__.py:1678
+#: models/__init__.py:1759
msgid "Watched User"
msgstr ""
-#: models/__init__.py:1680
+#: models/__init__.py:1761
msgid "Approved User"
msgstr ""
-#: models/__init__.py:1789
+#: models/__init__.py:1870
#, fuzzy, python-format
msgid "%(username)s karma is %(reputation)s"
msgstr "%(user_name)s karma 更動日誌"
-#: models/__init__.py:1799
+#: models/__init__.py:1880
#, python-format
msgid "one gold badge"
msgid_plural "%(count)d gold badges"
msgstr[0] ""
-#: models/__init__.py:1806
+#: models/__init__.py:1887
#, fuzzy, python-format
msgid "one silver badge"
msgid_plural "%(count)d silver badges"
msgstr[0] "第二名獎勵細節"
-#: models/__init__.py:1813
+#: models/__init__.py:1894
#, fuzzy, python-format
msgid "one bronze badge"
msgid_plural "%(count)d bronze badges"
msgstr[0] "第三名獎勵細節"
-#: models/__init__.py:1824
+#: models/__init__.py:1905
#, python-format
msgid "%(item1)s and %(item2)s"
msgstr ""
-#: models/__init__.py:1828
+#: models/__init__.py:1909
#, python-format
msgid "%(user)s has %(badges)s"
msgstr ""
-#: models/__init__.py:2305
+#: models/__init__.py:2389
#, fuzzy, python-format
msgid "\"%(title)s\""
msgstr "提問"
-#: models/__init__.py:2442
+#: models/__init__.py:2542
#, python-format
msgid ""
"Congratulations, you have received a badge '%(badge_name)s'. Check out <a "
"href=\"%(user_profile)s\">your profile</a>."
msgstr ""
-#: models/__init__.py:2635 views/commands.py:429
+#: models/__init__.py:2745 views/commands.py:460
msgid "Your tag subscription was saved, thanks!"
msgstr ""
@@ -3601,161 +3670,143 @@ msgstr "分類專家"
msgid "Created a tag used by %(num)s questions"
msgstr "產生被使用 50 個問題的標籤"
-#: models/badges.py:776
+#: models/badges.py:774
msgid "Expert"
msgstr "專家"
-#: models/badges.py:779
+#: models/badges.py:777
msgid "Very active in one tag"
msgstr "某一標籤常啟用"
-#: models/content.py:549
+#: models/post.py:1071
#, fuzzy
msgid "Sorry, this question has been deleted and is no longer accessible"
msgstr "這個問題被"
-#: models/content.py:565
+#: models/post.py:1087
msgid ""
"Sorry, the answer you are looking for is no longer available, because the "
"parent question has been removed"
msgstr ""
-#: models/content.py:572
+#: models/post.py:1094
#, fuzzy
msgid "Sorry, this answer has been removed and is no longer accessible"
msgstr "這個問題被"
-#: models/meta.py:116
+#: models/post.py:1110
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent question has been removed"
msgstr ""
-#: models/meta.py:123
+#: models/post.py:1117
msgid ""
"Sorry, the comment you are looking for is no longer accessible, because the "
"parent answer has been removed"
msgstr ""
-#: models/question.py:63
+#: models/question.py:54
#, python-format
msgid "\" and \"%s\""
msgstr ""
-#: models/question.py:66
+#: models/question.py:57
#, fuzzy
msgid "\" and more"
msgstr "查看更多"
-#: models/question.py:806
-#, python-format
-msgid "%(author)s modified the question"
-msgstr "%(author)s 已修改這個問題"
-
-#: models/question.py:810
-#, python-format
-msgid "%(people)s posted %(new_answer_count)s new answers"
-msgstr "%(people)s 張貼新答案 %(new_answer_count)s"
-
-#: models/question.py:815
-#, python-format
-msgid "%(people)s commented the question"
-msgstr "%(people)s 評論問題"
-
-#: models/question.py:820
-#, python-format
-msgid "%(people)s commented answers"
-msgstr "%(people)s 評論回答"
-
-#: models/question.py:822
-#, python-format
-msgid "%(people)s commented an answer"
-msgstr "%(people)s 評論回答"
+#: models/reply_by_email.py:71
+#, fuzzy
+msgid "edited by email"
+msgstr "驗證電子信箱"
-#: models/repute.py:142
+#: models/repute.py:143
#, python-format
msgid "<em>Changed by moderator. Reason:</em> %(reason)s"
msgstr ""
-#: models/repute.py:153
+#: models/repute.py:154
#, python-format
msgid ""
"%(points)s points were added for %(username)s's contribution to question "
"%(question_title)s"
msgstr ""
-#: models/repute.py:158
+#: models/repute.py:159
#, python-format
msgid ""
"%(points)s points were subtracted for %(username)s's contribution to "
"question %(question_title)s"
msgstr ""
-#: models/tag.py:151
+#: models/tag.py:106
#, fuzzy
msgid "interesting"
msgstr "有趣"
-#: models/tag.py:151
+#: models/tag.py:106
msgid "ignored"
msgstr "忽略"
-#: models/user.py:264
+#: models/user.py:266
msgid "Entire forum"
msgstr "這論壇"
-#: models/user.py:265
+#: models/user.py:267
msgid "Questions that I asked"
msgstr "提問問題"
-#: models/user.py:266
+#: models/user.py:268
msgid "Questions that I answered"
msgstr "已回答的問題"
-#: models/user.py:267
+#: models/user.py:269
msgid "Individually selected questions"
msgstr "已選問題"
-#: models/user.py:268
+#: models/user.py:270
msgid "Mentions and comment responses"
msgstr ""
-#: models/user.py:271
+#: models/user.py:273
msgid "Instantly"
msgstr ""
-#: models/user.py:272
+#: models/user.py:274
msgid "Daily"
msgstr "每天"
-#: models/user.py:273
+#: models/user.py:275
msgid "Weekly"
msgstr "每周"
-#: models/user.py:274
+#: models/user.py:276
msgid "No email"
msgstr "無電子郵件"
-#: skins/common/templates/authopenid/authopenid_macros.html:53
+#: skins/common/templates/authopenid/authopenid_macros.html:63
#, fuzzy
msgid "Please enter your <span>user name</span>, then sign in"
msgstr "使用帳號密碼登錄"
-#: skins/common/templates/authopenid/authopenid_macros.html:54
-#: skins/common/templates/authopenid/signin.html:90
+#: skins/common/templates/authopenid/authopenid_macros.html:64
+#: skins/common/templates/authopenid/signin.html:97
#, fuzzy
msgid "(or select another login method above)"
msgstr "請選取上數選項"
-#: skins/common/templates/authopenid/authopenid_macros.html:56
+#: skins/common/templates/authopenid/authopenid_macros.html:66
+#: skins/common/templates/authopenid/signin.html:113
#, fuzzy
msgid "Sign in"
msgstr "註冊帳號"
#: skins/common/templates/authopenid/changeemail.html:2
#: skins/common/templates/authopenid/changeemail.html:8
-#: skins/common/templates/authopenid/changeemail.html:36
-msgid "Change email"
+#: skins/common/templates/authopenid/changeemail.html:49
+#, fuzzy
+msgid "Change Email"
msgstr "更換電子郵件"
#: skins/common/templates/authopenid/changeemail.html:10
@@ -3764,28 +3815,39 @@ msgstr "儲存您的電子郵件地址"
#: skins/common/templates/authopenid/changeemail.html:15
#, python-format
-msgid "change %(email)s info"
-msgstr "更換 %(email)s 電子郵件"
+msgid ""
+"<span class=\\\"strong big\\\">Enter your new email into the box below</"
+"span> if \n"
+"you'd like to use another email for <strong>update subscriptions</strong>.\n"
+"<br>Currently you are using <strong>%%(email)s</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:17
+#: skins/common/templates/authopenid/changeemail.html:19
#, python-format
-msgid "here is why email is required, see %(gravatar_faq_url)s"
-msgstr "email 必要, 請參考 %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your new Email"
-msgstr "新電子信箱"
+msgid ""
+"<span class='strong big'>Please enter your email address in the box below.</"
+"span>\n"
+"Valid email address is required on this Q&amp;A forum. If you like, \n"
+"you can <strong>receive updates</strong> on interesting questions or entire\n"
+"forum via email. Also, your email is used to create a unique \n"
+"<a href='%%(gravatar_faq_url)s'><strong>gravatar</strong></a> image for "
+"your\n"
+"account. Email addresses are never shown or otherwise shared with anybody\n"
+"else."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:29
-msgid "Your Email"
-msgstr "電子信箱"
+#: skins/common/templates/authopenid/changeemail.html:38
+msgid ""
+"<strong>Your new Email:</strong> \n"
+"(will <strong>not</strong> be shown to anyone, must be valid)"
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:36
+#: skins/common/templates/authopenid/changeemail.html:49
#, fuzzy
msgid "Save Email"
msgstr "儲存電子信箱"
-#: skins/common/templates/authopenid/changeemail.html:38
+#: skins/common/templates/authopenid/changeemail.html:51
#: skins/default/templates/answer_edit.html:25
#: skins/default/templates/close.html:16
#: skins/default/templates/feedback.html:64
@@ -3793,121 +3855,115 @@ msgstr "儲存電子信箱"
#: skins/default/templates/question_retag.html:22
#: skins/default/templates/reopen.html:27
#: skins/default/templates/subscribe_for_tags.html:16
-#: skins/default/templates/user_profile/user_edit.html:96
+#: skins/default/templates/user_profile/user_edit.html:102
msgid "Cancel"
msgstr "取消"
-#: skins/common/templates/authopenid/changeemail.html:45
+#: skins/common/templates/authopenid/changeemail.html:58
#, fuzzy
msgid "Validate email"
msgstr "驗證電子信箱"
-#: skins/common/templates/authopenid/changeemail.html:48
+#: skins/common/templates/authopenid/changeemail.html:61
#, python-format
-msgid "validate %(email)s info or go to %(change_email_url)s"
-msgstr "驗證 %(email)s 資料或到 %(change_email_url)s"
+msgid ""
+"<span class=\\\"strong big\\\">An email with a validation link has been sent "
+"to \n"
+"%%(email)s.</span> Please <strong>follow the emailed link</strong> with "
+"your \n"
+"web browser. Email validation is necessary to help insure the proper use "
+"of \n"
+"email on <span class=\\\"orange\\\">Q&amp;A</span>. If you would like to "
+"use \n"
+"<strong>another email</strong>, please <a \n"
+"href='%%(change_email_url)s'><strong>change it again</strong></a>."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:52
+#: skins/common/templates/authopenid/changeemail.html:70
msgid "Email not changed"
msgstr "電子信箱不變"
-#: skins/common/templates/authopenid/changeemail.html:55
+#: skins/common/templates/authopenid/changeemail.html:73
#, python-format
-msgid "old %(email)s kept, if you like go to %(change_email_url)s"
-msgstr "如果你要到 %(change_email_url)s 舊 %(email)s 仍保留"
+msgid ""
+"<span class=\\\"strong big\\\">Your email address %%(email)s has not been "
+"changed.\n"
+"</span> If you decide to change it later - you can always do it by editing \n"
+"it in your user profile or by using the <a \n"
+"href='%%(change_email_url)s'><strong>previous form</strong></a> again."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:59
+#: skins/common/templates/authopenid/changeemail.html:80
#, fuzzy
msgid "Email changed"
msgstr "電子信箱已變"
-#: skins/common/templates/authopenid/changeemail.html:62
+#: skins/common/templates/authopenid/changeemail.html:83
#, python-format
-msgid "your current %(email)s can be used for this"
-msgstr "可以用電子信箱 %(email)s "
+msgid ""
+"\n"
+"<span class='big strong'>Your email address is now set to %%(email)s.</"
+"span> \n"
+"Updates on the questions that you like most will be sent to this address. \n"
+"Email notifications are sent once a day or less frequently - only when "
+"there \n"
+"are any news."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:66
+#: skins/common/templates/authopenid/changeemail.html:91
msgid "Email verified"
msgstr "驗證過電子信箱"
-#: skins/common/templates/authopenid/changeemail.html:69
-msgid "thanks for verifying email"
-msgstr "感謝驗證電子信箱"
+#: skins/common/templates/authopenid/changeemail.html:94
+msgid ""
+"<span class=\\\"big strong\\\">Thank you for verifying your email!</span> "
+"Now \n"
+"you can <strong>ask</strong> and <strong>answer</strong> questions. Also "
+"if \n"
+"you find a very interesting question you can <strong>subscribe for the \n"
+"updates</strong> - then will be notified about changes <strong>once a day</"
+"strong>\n"
+"or less frequently."
+msgstr ""
-#: skins/common/templates/authopenid/changeemail.html:73
-msgid "email key not sent"
-msgstr "電子信箱 key 未傳送"
+#: skins/common/templates/authopenid/changeemail.html:102
+#, fuzzy
+msgid "Validation email not sent"
+msgstr "驗證電子信箱"
-#: skins/common/templates/authopenid/changeemail.html:76
+#: skins/common/templates/authopenid/changeemail.html:105
#, python-format
-msgid "email key not sent %(email)s change email here %(change_link)s"
-msgstr "%(change_link)s 未傳送電子信箱 key %(email)s"
+msgid ""
+"<span class='big strong'>Your current email address %%(email)s has been \n"
+"validated before</span> so the new key was not sent. You can <a \n"
+"href='%%(change_link)s'>change</a> email used for update subscriptions if \n"
+"necessary."
+msgstr ""
#: skins/common/templates/authopenid/complete.html:21
-#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
msgid "Registration"
msgstr "註冊"
-#: skins/common/templates/authopenid/complete.html:27
-#, python-format
-msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr "註冊 %(provider)s 帳號, 參考 %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:30
-#, 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 ""
-"%(username)s 已註冊, 請選用 %(provider)s 其他帳號 \n"
-" 同時也需要電子信箱, 請參考 %(gravatar_faq_url)s\n"
-" "
-
-#: skins/common/templates/authopenid/complete.html:34
-#, python-format
-msgid ""
-"register new external %(provider)s account info, see %(gravatar_faq_url)s"
-msgstr "註冊外在 %(provider)s 帳號, 請參考 %(gravatar_faq_url)s"
-
-#: skins/common/templates/authopenid/complete.html:37
-#, python-format
-msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
-msgstr "註冊臉書新帳號, 請參考 %(gravatar_faq_url)s"
-
-# todo: review this message may be confusing user
-#: skins/common/templates/authopenid/complete.html:40
-msgid "This account already exists, please use another."
-msgstr "指定帳號已經存在, 請使用別的帳號。"
-
-#: skins/common/templates/authopenid/complete.html:59
-msgid "Screen name label"
-msgstr "畫面標題"
-
-#: skins/common/templates/authopenid/complete.html:66
+#: skins/common/templates/authopenid/complete.html:23
#, fuzzy
-msgid "Email address label"
-msgstr "您的電子郵件地址"
+msgid "User registration"
+msgstr "註冊"
-#: skins/common/templates/authopenid/complete.html:72
-#: skins/common/templates/authopenid/signup_with_password.html:36
-msgid "receive updates motivational blurb"
-msgstr "接收到更新的簡介"
+#: skins/common/templates/authopenid/complete.html:60
+msgid "<strong>Receive forum updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/complete.html:76
-#: skins/common/templates/authopenid/signup_with_password.html:40
+#: skins/common/templates/authopenid/complete.html:64
+#: skins/common/templates/authopenid/signup_with_password.html:46
msgid "please select one of the options above"
msgstr "請選取上數選項"
-#: skins/common/templates/authopenid/complete.html:79
-msgid "Tag filter tool will be your right panel, once you log in."
-msgstr "一旦簽入, 標籤供聚會在右欄"
-
-#: skins/common/templates/authopenid/complete.html:80
-msgid "create account"
-msgstr "新增帳號"
+#: skins/common/templates/authopenid/complete.html:67
+#: skins/common/templates/authopenid/signup_with_password.html:4
+#: skins/common/templates/authopenid/signup_with_password.html:53
+msgid "Signup"
+msgstr "註冊帳號"
#: skins/common/templates/authopenid/confirm_email.txt:1
msgid "Thank you for registering at our Q&A forum!"
@@ -3932,9 +3988,10 @@ msgstr "請由此進入: "
#: skins/common/templates/authopenid/confirm_email.txt:11
#: skins/common/templates/authopenid/email_validation.txt:13
+#, fuzzy
msgid ""
"Sincerely,\n"
-"Forum Administrator"
+"Q&A Forum Administrator"
msgstr ""
"你好, \n"
" 論壇管理者"
@@ -3954,8 +4011,8 @@ msgstr "請依上列指引認證電子郵件地址"
#: skins/common/templates/authopenid/email_validation.txt:9
#, fuzzy
msgid ""
-"If you beleive that this message was sent in mistake - \n"
-"no further action is needed. Just ingore this email, we apologize\n"
+"If you believe that this message was sent in mistake - \n"
+"no further action is needed. Just ignore this email, we apologize\n"
"for any inconvenience"
msgstr "如你肯定這訊息被誤送, 不需做任何動作, 並忽略此信, 非常抱歉 \n"
@@ -3995,9 +4052,9 @@ msgstr "一旦登入, 你針對 %(title)s %(summary)s 的答覆將會被貼"
#: skins/common/templates/authopenid/signin.html:28
msgid ""
-"Take a pick of your favorite service below to sign in using secure OpenID or "
-"similar technology. Your external service password always stays confidential "
-"and you don't have to rememeber or create another one."
+"Choose your favorite service below to sign in using secure OpenID or similar "
+"technology. Your external service password always stays confidential and you "
+"don't have to rememeber or create another one."
msgstr ""
#: skins/common/templates/authopenid/signin.html:31
@@ -4032,132 +4089,101 @@ msgid ""
"account"
msgstr "請輸入密碼"
-#: skins/common/templates/authopenid/signin.html:87
+#: skins/common/templates/authopenid/signin.html:89
#, fuzzy
-msgid "Please enter your <span>user name and password</span>, then sign in"
+msgid "or enter your <span>user name and password</span>, then sign in"
msgstr "使用帳號密碼登錄"
#: skins/common/templates/authopenid/signin.html:93
+#, fuzzy
+msgid "Please, sign in"
+msgstr "請由此進入: "
+
+#: skins/common/templates/authopenid/signin.html:100
msgid "Login failed, please try again"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:97
+#: skins/common/templates/authopenid/signin.html:104
#, fuzzy
msgid "Login or email"
msgstr "更換電子郵件"
-#: skins/common/templates/authopenid/signin.html:101
+#: skins/common/templates/authopenid/signin.html:108 utils/forms.py:169
msgid "Password"
msgstr "密碼"
-#: skins/common/templates/authopenid/signin.html:106
-msgid "Login"
-msgstr "登錄"
-
-#: skins/common/templates/authopenid/signin.html:113
+#: skins/common/templates/authopenid/signin.html:120
msgid "To change your password - please enter the new one twice, then submit"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:117
+#: skins/common/templates/authopenid/signin.html:124
#, fuzzy
msgid "New password"
msgstr "重設密碼"
-#: skins/common/templates/authopenid/signin.html:124
+#: skins/common/templates/authopenid/signin.html:133
#, fuzzy
msgid "Please, retype"
msgstr "確認密碼"
-#: skins/common/templates/authopenid/signin.html:146
+#: skins/common/templates/authopenid/signin.html:157
msgid "Here are your current login methods"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:150
+#: skins/common/templates/authopenid/signin.html:161
#, fuzzy
msgid "provider"
msgstr "打開"
-#: skins/common/templates/authopenid/signin.html:151
+#: skins/common/templates/authopenid/signin.html:162
#, fuzzy
msgid "last used"
msgstr "上次活動時間"
-#: skins/common/templates/authopenid/signin.html:152
+#: skins/common/templates/authopenid/signin.html:163
msgid "delete, if you like"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:166
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
+#: skins/common/templates/authopenid/signin.html:177
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
msgid "delete"
msgstr "刪除"
-#: skins/common/templates/authopenid/signin.html:168
+#: skins/common/templates/authopenid/signin.html:179
#, fuzzy
msgid "cannot be deleted"
msgstr "取消使用者"
-#: skins/common/templates/authopenid/signin.html:181
+#: skins/common/templates/authopenid/signin.html:192
#, fuzzy
msgid "Still have trouble signing in?"
msgstr "還有其他問題?"
-#: skins/common/templates/authopenid/signin.html:186
+#: skins/common/templates/authopenid/signin.html:197
#, fuzzy
msgid "Please, enter your email address below and obtain a new key"
msgstr "請輸入密碼"
-#: skins/common/templates/authopenid/signin.html:188
+#: skins/common/templates/authopenid/signin.html:199
#, fuzzy
msgid "Please, enter your email address below to recover your account"
msgstr "請輸入密碼"
-#: skins/common/templates/authopenid/signin.html:191
+#: skins/common/templates/authopenid/signin.html:202
#, fuzzy
msgid "recover your account via email"
msgstr "請設新密碼"
-#: skins/common/templates/authopenid/signin.html:202
+#: skins/common/templates/authopenid/signin.html:213
msgid "Send a new recovery key"
msgstr ""
-#: skins/common/templates/authopenid/signin.html:204
+#: skins/common/templates/authopenid/signin.html:215
#, fuzzy
msgid "Recover your account via email"
msgstr "請設新密碼"
-#: skins/common/templates/authopenid/signin.html:216
-msgid "Why use OpenID?"
-msgstr "為什麼使用 OpenID 登錄?"
-
-#: skins/common/templates/authopenid/signin.html:219
-msgid "with openid it is easier"
-msgstr "使用 OpenID 更為容易"
-
-#: skins/common/templates/authopenid/signin.html:222
-msgid "reuse openid"
-msgstr "用同一個 opedid 帳號"
-
-#: skins/common/templates/authopenid/signin.html:225
-msgid "openid is widely adopted"
-msgstr "OpenID 廣為被人利用"
-
-#: skins/common/templates/authopenid/signin.html:228
-msgid "openid is supported open standard"
-msgstr "OpenID 為開放標準"
-
-#: skins/common/templates/authopenid/signin.html:232
-msgid "Find out more"
-msgstr "查看更多"
-
-#: skins/common/templates/authopenid/signin.html:233
-msgid "Get OpenID"
-msgstr "獲取 OpenID"
-
-#: skins/common/templates/authopenid/signup_with_password.html:4
-msgid "Signup"
-msgstr "註冊帳號"
-
#: skins/common/templates/authopenid/signup_with_password.html:10
#, fuzzy
msgid "Please register by clicking on any of the icons below"
@@ -4174,25 +4200,29 @@ msgid "Create login name and password"
msgstr "新增帳號密碼"
#: skins/common/templates/authopenid/signup_with_password.html:26
-msgid "Traditional signup info"
-msgstr "傳統登入事項"
+msgid ""
+"<span class='strong big'>If you prefer, create your forum login name and \n"
+"password here. However</span>, please keep in mind that we also support \n"
+"<strong>OpenID</strong> login method. With <strong>OpenID</strong> you can \n"
+"simply reuse your external login (e.g. Gmail or AOL) without ever sharing \n"
+"your login details with anyone and having to remember yet another password."
+msgstr ""
+
+#: skins/common/templates/authopenid/signup_with_password.html:41
+msgid "<strong>Receive periodic updates by email</strong>"
+msgstr ""
-#: skins/common/templates/authopenid/signup_with_password.html:44
+#: skins/common/templates/authopenid/signup_with_password.html:50
msgid ""
"Please read and type in the two words below to help us prevent automated "
"account creation."
msgstr "請讀取並輸入下列的字, 以防止自動場產生的帳號. "
-#: skins/common/templates/authopenid/signup_with_password.html:47
-#, fuzzy
-msgid "Create Account"
-msgstr "新增帳號"
-
-#: skins/common/templates/authopenid/signup_with_password.html:49
+#: skins/common/templates/authopenid/signup_with_password.html:55
msgid "or"
msgstr "或者"
-#: skins/common/templates/authopenid/signup_with_password.html:50
+#: skins/common/templates/authopenid/signup_with_password.html:56
#, fuzzy
msgid "return to OpenID login"
msgstr "返回 OpenID 登錄"
@@ -4257,71 +4287,72 @@ msgstr ""
msgid "Delete These"
msgstr "刪除回答"
-#: skins/common/templates/question/answer_controls.html:5
-msgid "answer permanent link"
-msgstr "回答的連結地址"
+#: skins/common/templates/question/answer_controls.html:2
+#, fuzzy
+msgid "swap with question"
+msgstr "回答問題"
-#: skins/common/templates/question/answer_controls.html:6
+#: skins/common/templates/question/answer_controls.html:7
msgid "permanent link"
msgstr "永久連結"
-#: skins/common/templates/question/answer_controls.html:10
-#: skins/common/templates/question/question_controls.html:3
-#: skins/default/templates/macros.html:289
-#: skins/default/templates/revisions.html:37
-msgid "edit"
-msgstr "編輯"
+#: skins/common/templates/question/answer_controls.html:8
+#: skins/default/templates/widgets/answer_edit_tips.html:45
+#: skins/default/templates/widgets/question_edit_tips.html:40
+msgid "link"
+msgstr "聯結"
+
+# todo please check this in chinese
+#: skins/common/templates/question/answer_controls.html:13
+#: skins/common/templates/question/question_controls.html:4
+msgid "undelete"
+msgstr "恢復"
-#: skins/common/templates/question/answer_controls.html:15
-#: skins/common/templates/question/answer_controls.html:16
-#: skins/common/templates/question/question_controls.html:23
-#: skins/common/templates/question/question_controls.html:24
+#: skins/common/templates/question/answer_controls.html:19
#, fuzzy
-msgid "remove all flags"
+msgid "remove offensive flag"
+msgstr "標記垃圾帖"
+
+#: skins/common/templates/question/answer_controls.html:21
+#: skins/common/templates/question/question_controls.html:16
+#, fuzzy
+msgid "remove flag"
msgstr "查看標籤列表"
-#: skins/common/templates/question/answer_controls.html:22
-#: skins/common/templates/question/answer_controls.html:32
-#: skins/common/templates/question/question_controls.html:30
-#: skins/common/templates/question/question_controls.html:39
+#: skins/common/templates/question/answer_controls.html:26
+#: skins/common/templates/question/answer_controls.html:35
+#: skins/common/templates/question/question_controls.html:14
+#: skins/common/templates/question/question_controls.html:20
+#: skins/common/templates/question/question_controls.html:27
msgid ""
"report as offensive (i.e containing spam, advertising, malicious text, etc.)"
msgstr "檢舉該帖為「惡意帖」(含廣告、人身攻擊、惡意言論等)"
-#: skins/common/templates/question/answer_controls.html:23
-#: skins/common/templates/question/question_controls.html:31
+#: skins/common/templates/question/answer_controls.html:28
+#: skins/common/templates/question/answer_controls.html:37
+#: skins/common/templates/question/question_controls.html:22
+#: skins/common/templates/question/question_controls.html:29
msgid "flag offensive"
msgstr "標記惡意帖"
-#: skins/common/templates/question/answer_controls.html:33
-#: skins/common/templates/question/question_controls.html:40
-#, fuzzy
-msgid "remove flag"
-msgstr "查看標籤列表"
-
-# todo please check this in chinese
-#: skins/common/templates/question/answer_controls.html:44
-#: skins/common/templates/question/question_controls.html:49
-msgid "undelete"
-msgstr "恢復"
+#: skins/common/templates/question/answer_controls.html:41
+#: skins/common/templates/question/question_controls.html:36
+#: skins/default/templates/macros.html:311
+#: skins/default/templates/revisions.html:38
+#: skins/default/templates/revisions.html:41
+msgid "edit"
+msgstr "編輯"
-#: skins/common/templates/question/answer_controls.html:50
-#, fuzzy
-msgid "swap with question"
-msgstr "回答問題"
+#: skins/common/templates/question/answer_vote_buttons.html:6
+#: skins/default/templates/user_profile/user_stats.html:24
+msgid "this answer has been selected as correct"
+msgstr "該回答已被認為正確"
-#: skins/common/templates/question/answer_vote_buttons.html:13
-#: skins/common/templates/question/answer_vote_buttons.html:14
+#: skins/common/templates/question/answer_vote_buttons.html:8
#, fuzzy
msgid "mark this answer as correct (click again to undo)"
msgstr "標記為最佳答案(再次點擊取消操作)"
-#: skins/common/templates/question/answer_vote_buttons.html:23
-#: skins/common/templates/question/answer_vote_buttons.html:24
-#, fuzzy, python-format
-msgid "%(question_author)s has selected this answer as correct"
-msgstr "這個答案已經被提問作者標記為最佳答案"
-
#: skins/common/templates/question/closed_question_info.html:2
#, fuzzy, python-format
msgid ""
@@ -4335,23 +4366,30 @@ msgid "close date %(closed_at)s"
msgstr "關閉日期 %(closed_at)s "
#: skins/common/templates/question/question_controls.html:6
-#, fuzzy
-msgid "retag"
-msgstr "更新了標籤"
-
-#: skins/common/templates/question/question_controls.html:13
msgid "reopen"
msgstr "打開"
-#: skins/common/templates/question/question_controls.html:17
+#: skins/common/templates/question/question_controls.html:8
+#: skins/default/templates/user_profile/user_inbox.html:67
msgid "close"
msgstr "關閉"
-#: skins/common/templates/widgets/edit_post.html:21
+#: skins/common/templates/question/question_controls.html:35
+#, fuzzy
+msgid "retag"
+msgstr "更新了標籤"
+
+#: skins/common/templates/widgets/edit_post.html:22
#, fuzzy
-msgid "one of these is required"
+msgid ", one of these is required"
msgstr " 標籤不能為空白。"
+#: skins/common/templates/widgets/edit_post.html:31
+#: skins/common/templates/widgets/edit_post.html:36
+#, fuzzy
+msgid "tags:"
+msgstr "標籤"
+
# #-#-#-#-# django.po (0.7) #-#-#-#-#
# #, python-format
# msgid ""
@@ -4369,45 +4407,46 @@ msgstr " 標籤不能為空白。"
# " "
# msgstr "使用正確 %(email)s 張貼, \"
# " 參考 %(email_validation_faq_url)s\n"
-#: skins/common/templates/widgets/edit_post.html:33
+#: skins/common/templates/widgets/edit_post.html:32
msgid "(required)"
msgstr "(必要的)"
-#: skins/common/templates/widgets/edit_post.html:56
+#: skins/common/templates/widgets/edit_post.html:58
msgid "Toggle the real time Markdown editor preview"
msgstr "切換為 Markdown 編輯器的即時預覽"
-#: skins/common/templates/widgets/edit_post.html:58
+#: skins/common/templates/widgets/edit_post.html:60
#: skins/default/templates/answer_edit.html:61
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:49 skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:73
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:89
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:85
+#: skins/default/templates/question/javascript.html:88
msgid "hide preview"
msgstr "禁用預覽"
#: skins/common/templates/widgets/related_tags.html:3
-msgid "Related tags"
-msgstr "相關標籤"
+#: skins/default/templates/tags.html:4
+msgid "Tags"
+msgstr "標籤"
# book.html line 123 must be empty in english
#: skins/common/templates/widgets/tag_selector.html:4
msgid "Interesting tags"
msgstr "有趣的標籤"
-#: skins/common/templates/widgets/tag_selector.html:18
-#: skins/common/templates/widgets/tag_selector.html:34
+#: skins/common/templates/widgets/tag_selector.html:19
+#: skins/common/templates/widgets/tag_selector.html:36
#, fuzzy
msgid "add"
msgstr "增加"
-#: skins/common/templates/widgets/tag_selector.html:20
+#: skins/common/templates/widgets/tag_selector.html:21
msgid "Ignored tags"
msgstr "忽視標籤"
-#: skins/common/templates/widgets/tag_selector.html:36
+#: skins/common/templates/widgets/tag_selector.html:38
#, fuzzy
msgid "Display tag filter"
msgstr "選擇 Email 標籤篩選"
@@ -4458,7 +4497,7 @@ msgid "back to previous page"
msgstr "返回前頁"
#: skins/default/templates/404.jinja.html:31
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "see all questions"
msgstr "查看最新問題"
@@ -4487,11 +4526,6 @@ msgstr "請看最新問題"
msgid "see tags"
msgstr "請看標籤"
-#: skins/default/templates/about.html:3 skins/default/templates/about.html:5
-#, python-format
-msgid "About %(site_name)s"
-msgstr ""
-
#: skins/default/templates/answer_edit.html:4
#: skins/default/templates/answer_edit.html:10
msgid "Edit answer"
@@ -4522,17 +4556,20 @@ msgstr "儲存修改"
#: skins/default/templates/answer_edit.html:64
#: skins/default/templates/ask.html:52
#: skins/default/templates/question_edit.html:76
-#: skins/default/templates/question/javascript.html:92
+#: skins/default/templates/question/javascript.html:88
msgid "show preview"
msgstr "顯示預覽"
#: skins/default/templates/ask.html:4
-msgid "Ask a question"
-msgstr "我要提問"
+#: skins/default/templates/widgets/ask_button.html:5
+#: skins/default/templates/widgets/ask_form.html:43
+#, fuzzy
+msgid "Ask Your Question"
+msgstr "現在提問"
#: skins/default/templates/badge.html:5 skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:110
+#: skins/default/templates/user_profile/user_recent.html:19
+#: skins/default/templates/user_profile/user_stats.html:108
#, python-format
msgid "%(name)s"
msgstr ""
@@ -4555,8 +4592,8 @@ msgid "Badge \"%(name)s\""
msgstr ""
#: skins/default/templates/badge.html:9
-#: skins/default/templates/user_profile/user_recent.html:16
-#: skins/default/templates/user_profile/user_stats.html:108
+#: skins/default/templates/user_profile/user_recent.html:17
+#: skins/default/templates/user_profile/user_stats.html:106
#, fuzzy, python-format
msgid "%(description)s"
msgstr "email 訂閱"
@@ -4566,11 +4603,7 @@ msgid "user received this badge:"
msgid_plural "users received this badge:"
msgstr[0] ""
-#: skins/default/templates/badges.html:3
-msgid "Badges summary"
-msgstr "獎勵列表"
-
-#: skins/default/templates/badges.html:5
+#: skins/default/templates/badges.html:3 skins/default/templates/badges.html:5
msgid "Badges"
msgstr "獎勵"
@@ -4582,42 +4615,48 @@ msgstr "社群將依你提出的問題,回答,投票的表現,獎勵你。
#, fuzzy, python-format
msgid ""
"Below is the list of available badges and number \n"
-"of times each type of badge has been awarded. Give us feedback at "
-"%(feedback_faq_url)s.\n"
+" of times each type of badge has been awarded. Have ideas about fun \n"
+"badges? Please, give us your <a href='%%(feedback_faq_url)s'>feedback</a>\n"
msgstr ""
"下列為獎勵, 數目明細 \n"
" 歡迎給予 %(feedback_faq_url)s 回饋。\n"
" "
-#: skins/default/templates/badges.html:35
+#: skins/default/templates/badges.html:36
msgid "Community badges"
msgstr "社群獎勵"
-#: skins/default/templates/badges.html:37
+#: skins/default/templates/badges.html:38
msgid "gold badge: the highest honor and is very rare"
msgstr "金牌:十分罕見之最高榮耀"
-#: skins/default/templates/badges.html:40
-msgid "gold badge description"
-msgstr "第一名獎勵細節"
+#: skins/default/templates/badges.html:41
+#, fuzzy
+msgid ""
+"Gold badge is the highest award in this community. To obtain it have to "
+"show \n"
+"profound knowledge and ability in addition to your active participation."
+msgstr ""
+"金牌是十分罕見的。你不僅要參與社區的提問、回答、投票等活動,而且需要有博深的"
+"知識和能力才能獲得。"
-#: skins/default/templates/badges.html:45
+#: skins/default/templates/badges.html:47
msgid ""
"silver badge: occasionally awarded for the very high quality contributions"
msgstr "銀牌:偶爾頒發之優質獎章"
-#: skins/default/templates/badges.html:49
-msgid "silver badge description"
-msgstr "第二名獎勵細節"
+#: skins/default/templates/badges.html:51
+#, fuzzy
+msgid ""
+"msgid \"silver badge: occasionally awarded for the very high quality "
+"contributions"
+msgstr "銀牌:偶爾頒發之優質獎章"
-#: skins/default/templates/badges.html:52
+#: skins/default/templates/badges.html:54
+#: skins/default/templates/badges.html:58
msgid "bronze badge: often given as a special honor"
msgstr "第三名獎勵:授予之特殊榮譽"
-#: skins/default/templates/badges.html:56
-msgid "bronze badge description"
-msgstr "第三名獎勵細節"
-
# close.html
#: skins/default/templates/close.html:3 skins/default/templates/close.html:5
msgid "Close question"
@@ -4635,11 +4674,10 @@ msgstr "原因"
msgid "OK to close"
msgstr "確定關閉"
-#: skins/default/templates/faq.html:3
#: skins/default/templates/faq_static.html:3
#: skins/default/templates/faq_static.html:5
#: skins/default/templates/widgets/answer_edit_tips.html:20
-#: skins/default/templates/widgets/question_edit_tips.html:16
+#: skins/default/templates/widgets/question_edit_tips.html:16 views/meta.py:61
msgid "FAQ"
msgstr ""
@@ -4658,15 +4696,17 @@ msgid ""
msgstr "重點是 - 問題必須是和這社群 <strong>相關</strong>!"
#: skins/default/templates/faq_static.html:8
+#, fuzzy
msgid ""
-"Before asking the question - please make sure to use search to see whether "
-"your question has alredy been answered."
+"Before you ask - please make sure to search for a similar question. You can "
+"search questions by their title or tags."
msgstr ""
"提問之前,充分利用系統的自動查找、標籤和搜索,看看是否已經有一樣的問題並有了"
"答案。"
#: skins/default/templates/faq_static.html:10
-msgid "What questions should I avoid asking?"
+#, fuzzy
+msgid "What kinds of questions should be avoided?"
msgstr "什麼樣的問題我不該在此提問?"
#: skins/default/templates/faq_static.html:11
@@ -4681,10 +4721,11 @@ msgstr "什麼樣的回答是不受歡迎的?"
#: skins/default/templates/faq_static.html:14
msgid ""
-"is a Q&A site, not a discussion group. Therefore - please avoid having "
-"discussions in your answers, comment facility allows some space for brief "
-"discussions."
-msgstr " 此為 問題/回答 網站,非討論區,請勿在此討論或評論答案。"
+"is a <strong>question and answer</strong> site - <strong>it is not a "
+"discussion group</strong>. Please avoid holding debates in your answers as "
+"they tend to dilute the essense of questions and answers. For the brief "
+"discussions please use commenting facility."
+msgstr ""
#: skins/default/templates/faq_static.html:15
msgid "Who moderates this community?"
@@ -4699,18 +4740,24 @@ msgid "This website is moderated by the users."
msgstr "社群沒有嚴格意義上的管理員身份,每個人皆可為管理員"
#: skins/default/templates/faq_static.html:18
+#, fuzzy
msgid ""
-"The reputation system allows users earn the authorization to perform a "
-"variety of moderation tasks."
+"Karma system allows users to earn rights to perform a variety of moderation "
+"tasks"
msgstr "通過積分系統運作,每個用戶可以學習管理者的事務。"
#: skins/default/templates/faq_static.html:20
-msgid "How does reputation system work?"
+#, fuzzy
+msgid "How does karma system work?"
msgstr "社群積分系統如何運作?"
#: skins/default/templates/faq_static.html:21
-msgid "Rep system summary"
-msgstr "更新概要:"
+msgid ""
+"When a question or answer is upvoted, the user who posted them will gain "
+"some points, which are called \\\"karma points\\\". These points serve as a "
+"rough measure of the community trust to him/her. Various moderation tasks "
+"are gradually assigned to the users based on those points."
+msgstr ""
#: skins/default/templates/faq_static.html:22
#, fuzzy, python-format
@@ -4734,63 +4781,71 @@ msgstr ""
msgid "upvote"
msgstr "投贊成票"
-#: skins/default/templates/faq_static.html:37
-#, fuzzy
-msgid "use tags"
-msgstr "使用標籤"
-
# todo - check if it's indeed plural
-#: skins/default/templates/faq_static.html:42
+#: skins/default/templates/faq_static.html:36
msgid "add comments"
msgstr "添加評論"
-#: skins/default/templates/faq_static.html:46
+#: skins/default/templates/faq_static.html:40
#: skins/default/templates/user_profile/user_votes.html:15
msgid "downvote"
msgstr "投反對票"
-#: skins/default/templates/faq_static.html:49
+#: skins/default/templates/faq_static.html:43
#, fuzzy
msgid " accept own answer to own questions"
msgstr "首次可以接受的答案"
-#: skins/default/templates/faq_static.html:53
+#: skins/default/templates/faq_static.html:47
#, fuzzy
msgid "open and close own questions"
msgstr "打開關閉任何人的問題"
-#: skins/default/templates/faq_static.html:57
+#: skins/default/templates/faq_static.html:51
#, fuzzy
msgid "retag other's questions"
msgstr "給任何問題整理標籤"
-#: skins/default/templates/faq_static.html:62
+#: skins/default/templates/faq_static.html:56
msgid "edit community wiki questions"
msgstr "編輯 wiki 類問題"
-#: skins/default/templates/faq_static.html:67
+#: skins/default/templates/faq_static.html:61
#, fuzzy
-msgid "\"edit any answer"
+msgid "edit any answer"
msgstr "編輯任何答案"
-#: skins/default/templates/faq_static.html:71
+#: skins/default/templates/faq_static.html:65
#, fuzzy
-msgid "\"delete any comment"
+msgid "delete any comment"
msgstr "刪除每一個評論"
-#: skins/default/templates/faq_static.html:74
-msgid "what is gravatar"
-msgstr "何謂大頭貼服務"
+#: skins/default/templates/faq_static.html:69
+msgid "How to change my picture (gravatar) and what is gravatar?"
+msgstr ""
-#: skins/default/templates/faq_static.html:75
-msgid "gravatar faq info"
-msgstr "大頭貼服務常問集"
+#: skins/default/templates/faq_static.html:70
+msgid ""
+"<p>The picture that appears on the users profiles is called "
+"<strong>gravatar</strong> (which means <strong>g</strong>lobally <strong>r</"
+"strong>ecognized <strong>avatar</strong>).</p><p>Here is how it works: a "
+"<strong>cryptographic key</strong> (unbreakable code) is calculated from "
+"your email address. You upload your picture (or your favorite alter ego "
+"image) the website <a href='http://gravatar.com'><strong>gravatar.com</"
+"strong></a> from where we later retreive your image using the key.</"
+"p><p>This way all the websites you trust can show your image next to your "
+"posts and your email address remains private.</p><p>Please "
+"<strong>personalize your account</strong> with an image - just register at "
+"<a href='http://gravatar.com'><strong>gravatar.com</strong></a> (just please "
+"be sure to use the same email address that you used to register with us). "
+"Default image that looks like a kitchen tile is generated automatically.</p>"
+msgstr ""
-#: skins/default/templates/faq_static.html:76
+#: skins/default/templates/faq_static.html:71
msgid "To register, do I need to create new password?"
msgstr "注冊需要一個新密碼嗎?"
-#: skins/default/templates/faq_static.html:77
+#: skins/default/templates/faq_static.html:72
#, fuzzy
msgid ""
"No, you don't have to. You can login through any service that supports "
@@ -4799,39 +4854,39 @@ msgstr ""
"不需要。社區提供了OpenID 的登錄支持,你只需用 Google、Yahoo 等任何支持 "
"OpenID 登錄的帳號就可以使用系統。"
-#: skins/default/templates/faq_static.html:78
+#: skins/default/templates/faq_static.html:73
#, fuzzy
msgid "\"Login now!\""
msgstr "馬上登錄"
-#: skins/default/templates/faq_static.html:80
+#: skins/default/templates/faq_static.html:75
msgid "Why other people can edit my questions/answers?"
msgstr "為什麼其他人可以修改我的問題/回答?"
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid "Goal of this site is..."
msgstr "此網站的目的為 ... "
-#: skins/default/templates/faq_static.html:81
+#: skins/default/templates/faq_static.html:76
msgid ""
"So questions and answers can be edited like wiki pages by experienced users "
"of this site and this improves the overall quality of the knowledge base "
"content."
msgstr "所以問題和答案都是如 Wiki 一樣可編輯的,進而積累更多有用的知識和經驗。"
-#: skins/default/templates/faq_static.html:82
+#: skins/default/templates/faq_static.html:77
msgid "If this approach is not for you, we respect your choice."
msgstr "如果您不喜歡這種方式,我們尊重你的選擇。"
-#: skins/default/templates/faq_static.html:84
+#: skins/default/templates/faq_static.html:79
msgid "Still have questions?"
msgstr "還有其他問題?"
-#: skins/default/templates/faq_static.html:85
+#: skins/default/templates/faq_static.html:80
#, fuzzy, python-format
msgid ""
-"Please ask your question at %(ask_question_url)s, help make our community "
-"better!"
+"Please <a href='%%(ask_question_url)s'>ask</a> your question, help make our "
+"community better!"
msgstr "如果您對 %(ask_question_url)s 還有其他疑問,請一起來改善! "
#: skins/default/templates/feedback.html:3
@@ -4896,6 +4951,68 @@ msgstr ""
"\n"
" 你好, 這是 %(site_title)s 回饋單\n"
+#: skins/default/templates/help.html:2 skins/default/templates/help.html:4
+msgid "Help"
+msgstr ""
+
+#: skins/default/templates/help.html:7
+#, fuzzy, python-format
+msgid "Welcome %(username)s,"
+msgstr "選擇一個用戶名"
+
+#: skins/default/templates/help.html:9
+msgid "Welcome,"
+msgstr ""
+
+#: skins/default/templates/help.html:13
+#, python-format
+msgid "Thank you for using %(app_name)s, here is how it works."
+msgstr ""
+
+#: skins/default/templates/help.html:16
+msgid ""
+"This site is for asking and answering questions, not for open-ended "
+"discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:17
+msgid ""
+"We encourage everyone to use “question” space for asking and “answer” for "
+"answering."
+msgstr ""
+
+#: skins/default/templates/help.html:20
+msgid ""
+"Despite that, each question and answer can be commented – \n"
+" the comments are good for the limited discussions."
+msgstr ""
+
+#: skins/default/templates/help.html:24
+#, python-format
+msgid ""
+"Voting in %(app_name)s helps to select best answers and thank most helpful "
+"users."
+msgstr ""
+
+#: skins/default/templates/help.html:26
+#, python-format
+msgid ""
+"Please vote when you find helpful information,\n"
+" it really helps the %(app_name)s community."
+msgstr ""
+
+#: skins/default/templates/help.html:29
+msgid ""
+"Besides, you can @mention users anywhere in the text to point their "
+"attention,\n"
+" follow users and conversations and report inappropriate content by "
+"flagging it."
+msgstr ""
+
+#: skins/default/templates/help.html:32
+msgid "Enjoy."
+msgstr ""
+
#: skins/default/templates/import_data.html:2
#: skins/default/templates/import_data.html:4
msgid "Import StackExchange data"
@@ -4997,178 +5114,159 @@ msgstr ""
"你好, \n"
" 論壇管理者"
-#: skins/default/templates/macros.html:3
+#: skins/default/templates/instant_notification_reply_by_email.html:3
+msgid ""
+"\n"
+"\n"
+"======= Reply above this line. ====-=-=\n"
+msgstr ""
+
+#: skins/default/templates/instant_notification_reply_by_email.html:8
+#, python-format
+msgid ""
+"\n"
+"You can post an answer or a comment by replying to email notifications. To "
+"do that\n"
+"you need %(reply_by_email_karma_threshold)s karma, you have "
+"%(receiving_user_karma)s karma. \n"
+msgstr ""
+
+#: skins/default/templates/macros.html:5
#, fuzzy, python-format
msgid "Share this question on %(site)s"
msgstr "發布我的提問到我的 Twitter "
-#: skins/default/templates/macros.html:14
-#: skins/default/templates/macros.html:471
+#: skins/default/templates/macros.html:16
+#: skins/default/templates/macros.html:436
#, python-format
msgid "follow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:17
-#: skins/default/templates/macros.html:474
+#: skins/default/templates/macros.html:19
+#: skins/default/templates/macros.html:439
#, python-format
msgid "unfollow %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:18
-#: skins/default/templates/macros.html:475
+#: skins/default/templates/macros.html:20
+#: skins/default/templates/macros.html:440
#, python-format
msgid "following %(alias)s"
msgstr ""
-#: skins/default/templates/macros.html:29
-#, fuzzy
-msgid "i like this question (click again to cancel)"
-msgstr "這篇帖子有價值(再次點擊取消操作)"
-
-#: skins/default/templates/macros.html:31
-msgid "i like this answer (click again to cancel)"
-msgstr "這篇帖子有價值(再次點擊取消操作)"
-
-#: skins/default/templates/macros.html:37
+#: skins/default/templates/macros.html:33
msgid "current number of votes"
msgstr "當前總票數"
-#: skins/default/templates/macros.html:43
-#, fuzzy
-msgid "i dont like this question (click again to cancel)"
-msgstr "這篇帖子沒有價值(再次點擊取消操作)"
-
-#: skins/default/templates/macros.html:45
-msgid "i dont like this answer (click again to cancel)"
-msgstr "這篇帖子沒有價值(再次點擊取消操作)"
-
-#: skins/default/templates/macros.html:52
+#: skins/default/templates/macros.html:46
#, fuzzy
msgid "anonymous user"
msgstr "匿名者"
-#: skins/default/templates/macros.html:80
+#: skins/default/templates/macros.html:79
msgid "this post is marked as community wiki"
msgstr ""
-#: skins/default/templates/macros.html:83
+#: skins/default/templates/macros.html:82
#, python-format
msgid ""
"This post is a wiki.\n"
" Anyone with karma &gt;%(wiki_min_rep)s is welcome to improve it."
msgstr ""
-#: skins/default/templates/macros.html:89
+#: skins/default/templates/macros.html:88
msgid "asked"
msgstr "提問於"
-#: skins/default/templates/macros.html:91
+#: skins/default/templates/macros.html:90
#, fuzzy
msgid "answered"
msgstr "回答"
-#: skins/default/templates/macros.html:93
+#: skins/default/templates/macros.html:92
#, fuzzy
msgid "posted"
msgstr "發表"
-#: skins/default/templates/macros.html:123
+#: skins/default/templates/macros.html:122
msgid "updated"
msgstr "更新"
# this is how above two are supposed to be
-#: skins/default/templates/macros.html:221
+#: skins/default/templates/macros.html:202
#, python-format
msgid "see questions tagged '%(tag)s'"
msgstr "查看有關 '%(tag)s' 的問題"
-#: skins/default/templates/macros.html:278
+#: skins/default/templates/macros.html:304
msgid "delete this comment"
msgstr "刪除任何一個評論"
-#: skins/default/templates/macros.html:307
-#: skins/default/templates/macros.html:315
-#: skins/default/templates/question/javascript.html:24
-msgid "add comment"
-msgstr "添加評論"
-
-#: skins/default/templates/macros.html:308
-#, python-format
-msgid "see <strong>%(counter)s</strong> more"
-msgid_plural "see <strong>%(counter)s</strong> more"
-msgstr[0] "詳見 <strong>%(counter)s</strong>"
-
-#: skins/default/templates/macros.html:310
-#, fuzzy, python-format
-msgid "see <strong>%(counter)s</strong> more comment"
-msgid_plural ""
-"see <strong>%(counter)s</strong> more comments\n"
-" "
-msgstr[0] "更多評論, 詳見 <strong>%(counter)s</strong>"
-
-#: skins/default/templates/macros.html:542 templatetags/extra_tags.py:43
+#: skins/default/templates/macros.html:507 templatetags/extra_tags.py:43
#, python-format
msgid "%(username)s gravatar image"
msgstr "%(username)s 大頭貼"
-#: skins/default/templates/macros.html:551
+#: skins/default/templates/macros.html:516
#, fuzzy, python-format
msgid "%(username)s's website is %(url)s"
msgstr "%(user_name)s karma 更動日誌"
-#: skins/default/templates/macros.html:566
-#: skins/default/templates/macros.html:567
+#: skins/default/templates/macros.html:531
+#: skins/default/templates/macros.html:532
+#: skins/default/templates/macros.html:570
+#: skins/default/templates/macros.html:571
msgid "previous"
msgstr "上一頁"
-#: skins/default/templates/macros.html:578
+#: skins/default/templates/macros.html:543
+#: skins/default/templates/macros.html:582
msgid "current page"
msgstr "當前頁"
-#: skins/default/templates/macros.html:580
-#: skins/default/templates/macros.html:587
+#: skins/default/templates/macros.html:545
+#: skins/default/templates/macros.html:552
+#: skins/default/templates/macros.html:584
+#: skins/default/templates/macros.html:591
#, fuzzy, python-format
-msgid "page number %(num)s"
+msgid "page %(num)s"
msgstr "第 %(num)s 頁"
-#: skins/default/templates/macros.html:591
+#: skins/default/templates/macros.html:556
+#: skins/default/templates/macros.html:595
msgid "next page"
msgstr "下一頁"
-#: skins/default/templates/macros.html:602
-msgid "posts per page"
-msgstr "每頁顯示:"
-
-#: skins/default/templates/macros.html:629
+#: skins/default/templates/macros.html:607
#, fuzzy, python-format
msgid "responses for %(username)s"
msgstr "選擇一個用戶名"
-#: skins/default/templates/macros.html:632
+#: skins/default/templates/macros.html:610
#, fuzzy, python-format
-msgid "you have a new response"
+msgid "you have %(response_count)s new response"
msgid_plural "you have %(response_count)s new responses"
msgstr[0] "回應"
-#: skins/default/templates/macros.html:635
+#: skins/default/templates/macros.html:613
#, fuzzy
msgid "no new responses yet"
msgstr "回應"
-#: skins/default/templates/macros.html:650
-#: skins/default/templates/macros.html:651
+#: skins/default/templates/macros.html:628
+#: skins/default/templates/macros.html:629
#, fuzzy, python-format
msgid "%(new)s new flagged posts and %(seen)s previous"
msgstr "第一個標記張貼"
-#: skins/default/templates/macros.html:653
-#: skins/default/templates/macros.html:654
+#: skins/default/templates/macros.html:631
+#: skins/default/templates/macros.html:632
#, fuzzy, python-format
msgid "%(new)s new flagged posts"
msgstr "第一個標記張貼"
-#: skins/default/templates/macros.html:659
-#: skins/default/templates/macros.html:660
+#: skins/default/templates/macros.html:637
+#: skins/default/templates/macros.html:638
#, fuzzy, python-format
msgid "%(seen)s flagged posts"
msgstr "第一個標記張貼"
@@ -5177,10 +5275,37 @@ msgstr "第一個標記張貼"
msgid "Questions"
msgstr "問題列表"
-#: skins/default/templates/privacy.html:3
-#: skins/default/templates/privacy.html:5
-msgid "Privacy policy"
-msgstr "隱私政策"
+#: skins/default/templates/question.html:110
+#, fuzzy
+msgid "post a comment / <strong>some</strong> more"
+msgstr "詳見 <strong>%(counter)s</strong>"
+
+#: skins/default/templates/question.html:113
+#, fuzzy
+msgid "see <strong>some</strong> more"
+msgstr "詳見 <strong>%(counter)s</strong>"
+
+#: skins/default/templates/question.html:117
+#: skins/default/templates/question/javascript.html:20
+#, fuzzy
+msgid "post a comment"
+msgstr "添加評論"
+
+#: skins/default/templates/question.html:135
+#: skins/default/templates/question/content.html:40
+msgid "Answer Your Own Question"
+msgstr "回答問題"
+
+#: skins/default/templates/question.html:140
+#, fuzzy
+msgid "Post Your Answer"
+msgstr "您的回答"
+
+#: skins/default/templates/question.html:146
+#: skins/default/templates/widgets/ask_form.html:41
+#, fuzzy
+msgid "Login/Signup to Post"
+msgstr "登錄並回答該問題"
# page title
#: skins/default/templates/question_edit.html:4
@@ -5190,8 +5315,9 @@ msgstr "修改問題"
#: skins/default/templates/question_retag.html:3
#: skins/default/templates/question_retag.html:5
-msgid "Change tags"
-msgstr "修改標籤"
+#, fuzzy
+msgid "Retag question"
+msgstr "相似的問題"
#: skins/default/templates/question_retag.html:21
#, fuzzy
@@ -5251,6 +5377,13 @@ msgstr "重啟這個問題"
msgid "Reopen this question"
msgstr "重啟這個問題"
+#: skins/default/templates/reply_by_email_error.html:1
+msgid ""
+"\n"
+"<p>The system was unable to process your message successfully, the reason "
+"being:<p>\n"
+msgstr ""
+
# revisions_answer.html
#: skins/default/templates/revisions.html:4
#: skins/default/templates/revisions.html:7
@@ -5282,17 +5415,17 @@ msgstr "問題曾因下述原因結束"
msgid "Subscribe"
msgstr "使用標籤"
-#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:10
-msgid "Tag list"
-msgstr "標籤列表"
-
#: skins/default/templates/tags.html:8
#, python-format
msgid "Tags, matching \"%(stag)s\""
msgstr ""
+#: skins/default/templates/tags.html:10
+msgid "Tag list"
+msgstr "標籤列表"
+
#: skins/default/templates/tags.html:14 skins/default/templates/users.html:9
-#: skins/default/templates/main_page/tab_bar.html:14
+#: skins/default/templates/main_page/tab_bar.html:15
#, fuzzy
msgid "Sort by &raquo;"
msgstr "查詢性質: "
@@ -5313,7 +5446,7 @@ msgstr "按標籤被使用的次數排序"
msgid "by popularity"
msgstr "按流行程度排序"
-#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:57
+#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56
msgid "Nothing found"
msgstr "毫無所獲"
@@ -5327,8 +5460,10 @@ msgstr ""
#: skins/default/templates/users.html:15
#: skins/default/templates/user_profile/user_info.html:25
-msgid "reputation"
-msgstr "積分"
+#: skins/default/templates/user_profile/user_reputation.html:4
+#: skins/default/templates/user_profile/user_tabs.html:23
+msgid "karma"
+msgstr ""
#: skins/default/templates/users.html:20
msgid "see people who joined most recently"
@@ -5359,7 +5494,7 @@ msgstr "合乎 %(suser)s 查詢的所有用戶名:"
msgid "Nothing found."
msgstr "沒有找到相關數據。"
-#: skins/default/templates/main_page/headline.html:4 views/readers.py:160
+#: skins/default/templates/main_page/headline.html:4 views/readers.py:135
#, fuzzy, python-format
msgid "%(q_num)s question"
msgid_plural "%(q_num)s questions"
@@ -5375,40 +5510,40 @@ msgstr "%(author_name)s 的貢獻"
msgid "Tagged"
msgstr "標記"
-#: skins/default/templates/main_page/headline.html:23
+#: skins/default/templates/main_page/headline.html:24
msgid "Search tips:"
msgstr "搜尋技巧: "
-#: skins/default/templates/main_page/headline.html:26
+#: skins/default/templates/main_page/headline.html:27
msgid "reset author"
msgstr "重設作者"
-#: skins/default/templates/main_page/headline.html:28
-#: skins/default/templates/main_page/headline.html:31
+#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:32
#: skins/default/templates/main_page/nothing_found.html:18
#: skins/default/templates/main_page/nothing_found.html:21
#, fuzzy
msgid " or "
msgstr "或者"
-#: skins/default/templates/main_page/headline.html:29
+#: skins/default/templates/main_page/headline.html:30
msgid "reset tags"
msgstr "重設標籤"
-#: skins/default/templates/main_page/headline.html:32
-#: skins/default/templates/main_page/headline.html:35
+#: skins/default/templates/main_page/headline.html:33
+#: skins/default/templates/main_page/headline.html:36
msgid "start over"
msgstr "重新開始"
-#: skins/default/templates/main_page/headline.html:37
+#: skins/default/templates/main_page/headline.html:38
msgid " - to expand, or dig in by adding more tags and revising the query."
msgstr " - 使用更多的標籤更改查詢找資料"
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "Search tip:"
msgstr "查詢技巧: "
-#: skins/default/templates/main_page/headline.html:40
+#: skins/default/templates/main_page/headline.html:41
msgid "add tags and a query to focus your search"
msgstr "增加標籤和查詢加強搜尋"
@@ -5449,19 +5584,19 @@ msgstr "重新開始"
msgid "Please always feel free to ask your question!"
msgstr "歡迎提問! "
-#: skins/default/templates/main_page/questions_loop.html:12
+#: skins/default/templates/main_page/questions_loop.html:11
msgid "Did not find what you were looking for?"
msgstr "找不到結果? "
-#: skins/default/templates/main_page/questions_loop.html:13
+#: skins/default/templates/main_page/questions_loop.html:12
msgid "Please, post your question!"
msgstr "現在提問"
-#: skins/default/templates/main_page/tab_bar.html:9
+#: skins/default/templates/main_page/tab_bar.html:10
msgid "subscribe to the questions feed"
msgstr "訂閱最新問題"
-#: skins/default/templates/main_page/tab_bar.html:10
+#: skins/default/templates/main_page/tab_bar.html:11
msgid "RSS"
msgstr ""
@@ -5473,20 +5608,20 @@ msgid ""
"a>"
msgstr ""
-#: skins/default/templates/meta/editor_data.html:5
+#: skins/default/templates/meta/editor_data.html:7
#, fuzzy, python-format
msgid "each tag must be shorter that %(max_chars)s character"
msgid_plural "each tag must be shorter than %(max_chars)s characters"
msgstr[0] "每個標籤的長度不超過%(max_chars)s"
-#: skins/default/templates/meta/editor_data.html:7
+#: skins/default/templates/meta/editor_data.html:9
#, fuzzy, python-format
msgid "please use %(tag_count)s tag"
msgid_plural "please use %(tag_count)s tags or less"
msgstr[0] "最多只能有%(tag_count)s個標籤"
# todo: remove magic numbers from this file
-#: skins/default/templates/meta/editor_data.html:8
+#: skins/default/templates/meta/editor_data.html:10
#, fuzzy, python-format
msgid ""
"please use up to %(tag_count)s tags, less than %(max_chars)s characters each"
@@ -5496,78 +5631,74 @@ msgstr "最多 5 個標籤,每個標籤長度小於 %(tag_count)s 個字元。
#, fuzzy, python-format
msgid ""
"\n"
-" %(counter)s Answer\n"
-" "
+" %(counter)s Answer\n"
+" "
msgid_plural ""
"\n"
-" %(counter)s Answers\n"
+" %(counter)s Answers\n"
" "
msgstr[0] ""
"\n"
" %(counter)s 答案:"
+#: skins/default/templates/question/answer_tab_bar.html:11
+#, fuzzy
+msgid "Sort by »"
+msgstr "查詢性質: "
+
#: skins/default/templates/question/answer_tab_bar.html:14
msgid "oldest answers will be shown first"
msgstr "最先回答將顯示在最前面"
-#: skins/default/templates/question/answer_tab_bar.html:15
-msgid "oldest answers"
-msgstr "最先回答"
-
#: skins/default/templates/question/answer_tab_bar.html:17
msgid "newest answers will be shown first"
msgstr "最晚回答將顯示在最前面"
-#: skins/default/templates/question/answer_tab_bar.html:18
-msgid "newest answers"
-msgstr "最近回答"
-
#: skins/default/templates/question/answer_tab_bar.html:20
msgid "most voted answers will be shown first"
msgstr "投票次數最多的將顯示在最前面"
-#: skins/default/templates/question/answer_tab_bar.html:21
-msgid "popular answers"
-msgstr "投票最多"
-
-#: skins/default/templates/question/content.html:20
-#: skins/default/templates/question/new_answer_form.html:46
-msgid "Answer Your Own Question"
-msgstr "回答問題"
-
-#: skins/default/templates/question/new_answer_form.html:14
+#: skins/default/templates/question/new_answer_form.html:16
#, fuzzy
msgid "Login/Signup to Answer"
msgstr "登錄並回答該問題"
-#: skins/default/templates/question/new_answer_form.html:22
+#: skins/default/templates/question/new_answer_form.html:24
msgid "Your answer"
msgstr "您的回答"
-#: skins/default/templates/question/new_answer_form.html:24
+#: skins/default/templates/question/new_answer_form.html:26
msgid "Be the first one to answer this question!"
msgstr "這問題的第一個解答者"
-#: skins/default/templates/question/new_answer_form.html:30
-msgid "you can answer anonymously and then login"
-msgstr "你可以匿名回應再簽入"
-
-#: skins/default/templates/question/new_answer_form.html:34
-msgid "answer your own question only to give an answer"
-msgstr "自問自答"
+#: skins/default/templates/question/new_answer_form.html:32
+msgid ""
+"<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)!"
+msgstr ""
#: skins/default/templates/question/new_answer_form.html:36
-msgid "please only give an answer, no discussions"
-msgstr "請答複問題,而非討論。"
-
-#: skins/default/templates/question/new_answer_form.html:43
-#, fuzzy
-msgid "Login/Signup to Post Your Answer"
-msgstr "登錄並回答該問題"
+msgid ""
+"<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)!"
+msgstr ""
-#: skins/default/templates/question/new_answer_form.html:48
-msgid "Answer the question"
-msgstr "回答問題"
+#: skins/default/templates/question/new_answer_form.html:38
+msgid ""
+"<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!"
+msgstr ""
#: skins/default/templates/question/sharing_prompt_phrase.html:2
#, python-format
@@ -5585,59 +5716,59 @@ msgstr "或者"
msgid "email"
msgstr "email"
-#: skins/default/templates/question/sidebar.html:4
+#: skins/default/templates/question/sidebar.html:6
#, fuzzy
msgid "Question tools"
msgstr "問題標籤"
-#: skins/default/templates/question/sidebar.html:7
+#: skins/default/templates/question/sidebar.html:9
#, fuzzy
msgid "click to unfollow this question"
msgstr "點選觀看最熱門的問題"
-#: skins/default/templates/question/sidebar.html:8
+#: skins/default/templates/question/sidebar.html:10
#, fuzzy
msgid "Following"
msgstr "所有問題"
-#: skins/default/templates/question/sidebar.html:9
+#: skins/default/templates/question/sidebar.html:11
#, fuzzy
msgid "Unfollow"
msgstr "所有問題"
-#: skins/default/templates/question/sidebar.html:13
+#: skins/default/templates/question/sidebar.html:15
#, fuzzy
msgid "click to follow this question"
msgstr "點選觀看最熱門的問題"
-#: skins/default/templates/question/sidebar.html:14
+#: skins/default/templates/question/sidebar.html:16
#, fuzzy
msgid "Follow"
msgstr "所有問題"
-#: skins/default/templates/question/sidebar.html:21
+#: skins/default/templates/question/sidebar.html:23
#, python-format
msgid "%(count)s follower"
msgid_plural "%(count)s followers"
msgstr[0] ""
-#: skins/default/templates/question/sidebar.html:27
+#: skins/default/templates/question/sidebar.html:29
#, fuzzy
msgid "email the updates"
msgstr "取消電子郵件更新"
-#: skins/default/templates/question/sidebar.html:30
+#: skins/default/templates/question/sidebar.html:32
msgid ""
"<strong>Here</strong> (once you log in) you will be able to sign up for the "
"periodic email updates about this question."
msgstr ""
-#: skins/default/templates/question/sidebar.html:35
+#: skins/default/templates/question/sidebar.html:37
#, fuzzy
msgid "subscribe to this question rss feed"
msgstr "訂閱最新問題"
-#: skins/default/templates/question/sidebar.html:36
+#: skins/default/templates/question/sidebar.html:38
#, fuzzy
msgid "subscribe to rss feed"
msgstr "訂閱最新問題"
@@ -5648,50 +5779,41 @@ msgstr ""
#: skins/default/templates/question/sidebar.html:48
#, fuzzy
-msgid "question asked"
-msgstr "提問時間"
+msgid "Asked"
+msgstr "提問於"
#: skins/default/templates/question/sidebar.html:51
-msgid "question was seen"
-msgstr "目前問題"
+msgid "Seen"
+msgstr ""
#: skins/default/templates/question/sidebar.html:51
msgid "times"
msgstr "次"
#: skins/default/templates/question/sidebar.html:54
-msgid "last updated"
+#, fuzzy
+msgid "Last updated"
msgstr "最後更新時間"
-#: skins/default/templates/question/sidebar.html:63
+#: skins/default/templates/question/sidebar.html:62
msgid "Related questions"
msgstr "相似的問題"
-#: skins/default/templates/question/subscribe_by_email_prompt.html:7
-#: skins/default/templates/question/subscribe_by_email_prompt.html:9
+#: skins/default/templates/question/subscribe_by_email_prompt.html:5
#, fuzzy
-msgid "Notify me once a day when there are any new answers"
+msgid "Email me when there are any new answers"
msgstr "若有新答案請知會我"
#: skins/default/templates/question/subscribe_by_email_prompt.html:11
-msgid "Notify me weekly when there are any new answers"
-msgstr "若有新答案請知會我"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:13
-#, fuzzy
-msgid "Notify me immediately when there are any new answers"
-msgstr "若有新答案請知會我"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:16
-#, python-format
-msgid ""
-"You can always adjust frequency of email updates from your %(profile_url)s"
-msgstr "你可從 %(profile_url)s 調整 email 更新頻率"
-
-#: skins/default/templates/question/subscribe_by_email_prompt.html:21
msgid "once you sign in you will be able to subscribe for any updates here"
msgstr "一旦遷入你可以訂閱任何更新"
+#: skins/default/templates/question/subscribe_by_email_prompt.html:12
+msgid ""
+"<span class='strong'>Here</span> (once you log in) you will be able to sign "
+"up for the periodic email updates about this question."
+msgstr ""
+
#: skins/default/templates/user_profile/user.html:12
#, fuzzy, python-format
msgid "%(username)s's profile"
@@ -5724,8 +5846,13 @@ msgstr "註冊用戶"
msgid "Screen Name"
msgstr "當頁"
-#: skins/default/templates/user_profile/user_edit.html:95
-#: skins/default/templates/user_profile/user_email_subscriptions.html:21
+#: skins/default/templates/user_profile/user_edit.html:59
+#, fuzzy
+msgid "(cannot be changed)"
+msgstr "取消使用者"
+
+#: skins/default/templates/user_profile/user_edit.html:101
+#: skins/default/templates/user_profile/user_email_subscriptions.html:22
msgid "Update"
msgstr "更新"
@@ -5739,13 +5866,19 @@ msgstr "email 訂閱"
msgid "Email subscription settings"
msgstr "Email 訂閱設定"
-#: skins/default/templates/user_profile/user_email_subscriptions.html:8
-msgid "email subscription settings info"
-msgstr "Email 訂閱設定資料"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:9
+msgid ""
+"<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."
+msgstr ""
-#: skins/default/templates/user_profile/user_email_subscriptions.html:22
-msgid "Stop sending email"
-msgstr "停止送出 email"
+#: skins/default/templates/user_profile/user_email_subscriptions.html:23
+#, fuzzy
+msgid "Stop Email"
+msgstr "電子信箱"
#: skins/default/templates/user_profile/user_favorites.html:4
#: skins/default/templates/user_profile/user_tabs.html:27
@@ -5774,21 +5907,25 @@ msgid "flagged items (%(flag_count)s)"
msgstr "最多只能有%(tag_count)s個標籤"
#: skins/default/templates/user_profile/user_inbox.html:49
+#: skins/default/templates/user_profile/user_inbox.html:61
#, fuzzy
msgid "select:"
msgstr "刪除"
#: skins/default/templates/user_profile/user_inbox.html:51
+#: skins/default/templates/user_profile/user_inbox.html:63
#, fuzzy
msgid "seen"
msgstr "查看"
#: skins/default/templates/user_profile/user_inbox.html:52
+#: skins/default/templates/user_profile/user_inbox.html:64
#, fuzzy
msgid "new"
msgstr "最新問題"
#: skins/default/templates/user_profile/user_inbox.html:53
+#: skins/default/templates/user_profile/user_inbox.html:65
#, fuzzy
msgid "none"
msgstr "第三名"
@@ -5807,6 +5944,16 @@ msgstr "標記最佳答案"
msgid "dismiss"
msgstr ""
+#: skins/default/templates/user_profile/user_inbox.html:66
+#, fuzzy
+msgid "remove flags"
+msgstr "查看標籤列表"
+
+#: skins/default/templates/user_profile/user_inbox.html:68
+#, fuzzy
+msgid "delete post"
+msgstr "刪除"
+
#: skins/default/templates/user_profile/user_info.html:36
msgid "update profile"
msgstr "更新我的資料"
@@ -5820,7 +5967,8 @@ msgid "real name"
msgstr "真名"
#: skins/default/templates/user_profile/user_info.html:58
-msgid "member for"
+#, fuzzy
+msgid "member since"
msgstr "已加入"
#: skins/default/templates/user_profile/user_info.html:63
@@ -5828,7 +5976,8 @@ msgid "last seen"
msgstr "上次活動時間"
#: skins/default/templates/user_profile/user_info.html:69
-msgid "user website"
+#, fuzzy
+msgid "website"
msgstr "個人網站"
#: skins/default/templates/user_profile/user_info.html:75
@@ -5972,20 +6121,17 @@ msgid "%(username)s's network is empty"
msgstr "用戶資料"
#: skins/default/templates/user_profile/user_recent.html:4
+#: skins/default/templates/user_profile/user_tabs.html:29
#: skins/default/templates/user_profile/user_tabs.html:31
#, fuzzy
msgid "activity"
msgstr "熱門問題"
-#: skins/default/templates/user_profile/user_recent.html:21
+#: skins/default/templates/user_profile/user_recent.html:24
#: skins/default/templates/user_profile/user_recent.html:28
msgid "source"
msgstr ""
-#: skins/default/templates/user_profile/user_reputation.html:4
-msgid "karma"
-msgstr ""
-
#: skins/default/templates/user_profile/user_reputation.html:11
msgid "Your karma change log."
msgstr "karma 更動日誌"
@@ -6007,20 +6153,16 @@ msgid_plural "<span class=\"count\">%(counter)s</span> Questions"
msgstr[0] "<span class=\"count\">%(counter)s</span> 問題"
#: skins/default/templates/user_profile/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] "<span class=\"count\">%(counter)s</span> 答案"
+#, fuzzy
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "回答"
#: skins/default/templates/user_profile/user_stats.html:24
#, python-format
msgid "the answer has been voted for %(answer_score)s times"
msgstr "該回答總共有 %(answer_score)s 個投票"
-#: skins/default/templates/user_profile/user_stats.html:24
-msgid "this answer has been selected as correct"
-msgstr "該回答已被認為正確"
-
#: skins/default/templates/user_profile/user_stats.html:34
#, fuzzy, python-format
msgid "(%(comment_count)s comment)"
@@ -6056,13 +6198,13 @@ msgid "<span class=\"count\">%(counter)s</span> Tag"
msgid_plural "<span class=\"count\">%(counter)s</span> Tags"
msgstr[0] "<span class=\"count\">%(counter)s</span> 標籤"
-#: skins/default/templates/user_profile/user_stats.html:99
+#: skins/default/templates/user_profile/user_stats.html:97
#, python-format
msgid "<span class=\"count\">%(counter)s</span> Badge"
msgid_plural "<span class=\"count\">%(counter)s</span> Badges"
msgstr[0] "<span class=\"count\">%(counter)s</span> 標記"
-#: skins/default/templates/user_profile/user_stats.html:122
+#: skins/default/templates/user_profile/user_stats.html:120
#, fuzzy
msgid "Answer to:"
msgstr "提問技巧"
@@ -6071,7 +6213,7 @@ msgstr "提問技巧"
msgid "User profile"
msgstr "用戶資料"
-#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:786
+#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:638
msgid "comments and answers to others questions"
msgstr "其他用戶的回覆和評論"
@@ -6080,49 +6222,41 @@ msgid "followers and followed users"
msgstr ""
#: skins/default/templates/user_profile/user_tabs.html:21
-msgid "graph of user reputation"
+#, fuzzy
+msgid "Graph of user karma"
msgstr "用戶的社群積分圖示"
-#: skins/default/templates/user_profile/user_tabs.html:23
-msgid "reputation history"
-msgstr "積分歷史"
-
#: skins/default/templates/user_profile/user_tabs.html:25
#, fuzzy
msgid "questions that user is following"
msgstr "用戶收藏的問題"
-#: skins/default/templates/user_profile/user_tabs.html:29
-msgid "recent activity"
-msgstr "最近活動"
-
-#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:861
+#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:679
msgid "user vote record"
msgstr "用戶投票記錄"
#: skins/default/templates/user_profile/user_tabs.html:36
-msgid "casted votes"
-msgstr "決定性投票"
+#: skins/default/templates/user_profile/user_votes.html:4
+msgid "votes"
+msgstr "投票"
-#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:974
+#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:769
msgid "email subscription settings"
msgstr "email 訂閱設定"
-#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:211
+#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:205
#, fuzzy
msgid "moderate this user"
msgstr "管理用戶"
-#: skins/default/templates/user_profile/user_votes.html:4
-msgid "votes"
-msgstr "投票"
-
#: skins/default/templates/widgets/answer_edit_tips.html:3
-msgid "answer tips"
-msgstr "提問技巧"
+#: skins/default/templates/widgets/question_edit_tips.html:3
+msgid "Tips"
+msgstr ""
#: skins/default/templates/widgets/answer_edit_tips.html:6
-msgid "please make your answer relevant to this community"
+#, fuzzy
+msgid "give an answer interesting to this community"
msgstr "請回應相關答案"
#: skins/default/templates/widgets/answer_edit_tips.html:9
@@ -6130,8 +6264,10 @@ msgid "try to give an answer, rather than engage into a discussion"
msgstr "盡量答覆問題,而非討論。"
#: skins/default/templates/widgets/answer_edit_tips.html:12
-msgid "please try to provide details"
-msgstr "請詳細描述細節"
+#: skins/default/templates/widgets/question_edit_tips.html:8
+#, fuzzy
+msgid "provide enough details"
+msgstr "請詳細描述您的問題。"
#: skins/default/templates/widgets/answer_edit_tips.html:15
#: skins/default/templates/widgets/question_edit_tips.html:11
@@ -6145,7 +6281,8 @@ msgstr "查看常見問題"
#: skins/default/templates/widgets/answer_edit_tips.html:27
#: skins/default/templates/widgets/question_edit_tips.html:22
-msgid "Markdown tips"
+#, fuzzy
+msgid "Markdown basics"
msgstr "Markdown 快速參考"
#: skins/default/templates/widgets/answer_edit_tips.html:31
@@ -6170,11 +6307,6 @@ msgid "**bold** or __bold__"
msgstr "**加粗** 或者 __加粗__ "
#: skins/default/templates/widgets/answer_edit_tips.html:45
-#: skins/default/templates/widgets/question_edit_tips.html:40
-msgid "link"
-msgstr "聯結"
-
-#: skins/default/templates/widgets/answer_edit_tips.html:45
#: skins/default/templates/widgets/answer_edit_tips.html:49
#: skins/default/templates/widgets/question_edit_tips.html:40
#: skins/default/templates/widgets/question_edit_tips.html:45
@@ -6201,31 +6333,29 @@ msgstr "支援基本的HTML標籤"
msgid "learn more about Markdown"
msgstr "有關 Markdown 詳細說明"
-#: skins/default/templates/widgets/ask_button.html:2
-msgid "ask a question"
-msgstr "我要提問"
-
#: skins/default/templates/widgets/ask_form.html:6
msgid "login to post question info"
msgstr "簽入張貼問題"
-#: skins/default/templates/widgets/ask_form.html:10
-#, fuzzy, python-format
+#: skins/default/templates/widgets/ask_form.html:7
msgid ""
-"must have valid %(email)s to post, \n"
-" see %(email_validation_faq_url)s\n"
-" "
+"<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."
msgstr ""
-"%(username)s 已註冊, 請選用 %(provider)s 其他帳號 \n"
-" 同時也需要電子信箱, 請參考 %(gravatar_faq_url)s\n"
-
-#: skins/default/templates/widgets/ask_form.html:42
-msgid "Login/signup to post your question"
-msgstr "請 Login/signup 進去張貼"
-#: skins/default/templates/widgets/ask_form.html:44
-msgid "Ask your question"
-msgstr "現在提問"
+#: skins/default/templates/widgets/ask_form.html:11
+#, python-format
+msgid ""
+"<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."
+msgstr ""
#: skins/default/templates/widgets/contributors.html:3
msgid "Contributors"
@@ -6242,10 +6372,15 @@ msgid "about"
msgstr "關於本站"
#: skins/default/templates/widgets/footer.html:40
+#: skins/default/templates/widgets/user_navigation.html:17
+msgid "help"
+msgstr ""
+
+#: skins/default/templates/widgets/footer.html:42
msgid "privacy policy"
msgstr "隱私政策"
-#: skins/default/templates/widgets/footer.html:49
+#: skins/default/templates/widgets/footer.html:51
msgid "give feedback"
msgstr "問題回饋"
@@ -6266,17 +6401,10 @@ msgstr "用戶"
msgid "badges"
msgstr "獎勵榜"
-#: skins/default/templates/widgets/question_edit_tips.html:3
-msgid "question tips"
-msgstr "提問技巧"
-
#: skins/default/templates/widgets/question_edit_tips.html:5
-msgid "please ask a relevant question"
-msgstr "我要提問"
-
-#: skins/default/templates/widgets/question_edit_tips.html:8
-msgid "please try provide enough details"
-msgstr "請詳細描述您的問題。"
+#, fuzzy
+msgid "ask a question interesting to this community"
+msgstr "請回應相關答案"
#: skins/default/templates/widgets/question_summary.html:12
#, fuzzy
@@ -6296,29 +6424,29 @@ msgid "vote"
msgid_plural "votes"
msgstr[0] "票"
-#: skins/default/templates/widgets/scope_nav.html:3
+#: skins/default/templates/widgets/scope_nav.html:6
msgid "ALL"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
#, fuzzy
msgid "see unanswered questions"
msgstr "沒有回答的問題"
-#: skins/default/templates/widgets/scope_nav.html:5
+#: skins/default/templates/widgets/scope_nav.html:8
msgid "UNANSWERED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
#, fuzzy
msgid "see your followed questions"
msgstr "用戶收藏的問題"
-#: skins/default/templates/widgets/scope_nav.html:8
+#: skins/default/templates/widgets/scope_nav.html:11
msgid "FOLLOWED"
msgstr ""
-#: skins/default/templates/widgets/scope_nav.html:11
+#: skins/default/templates/widgets/scope_nav.html:14
#, fuzzy
msgid "Please ask your question here"
msgstr "現在提問"
@@ -6332,26 +6460,28 @@ msgstr ""
msgid "badges:"
msgstr "獎勵榜"
-#: skins/default/templates/widgets/user_navigation.html:8
-msgid "logout"
+#: skins/default/templates/widgets/user_navigation.html:9
+#, fuzzy
+msgid "sign out"
msgstr "登出"
-#: skins/default/templates/widgets/user_navigation.html:10
-msgid "login"
-msgstr "登錄"
+#: skins/default/templates/widgets/user_navigation.html:12
+#, fuzzy
+msgid "Hi, there! Please sign in"
+msgstr "請由此進入: "
# book.html line 123 must be empty in english
-#: skins/default/templates/widgets/user_navigation.html:14
+#: skins/default/templates/widgets/user_navigation.html:15
#, fuzzy
msgid "settings"
msgstr "重設標籤"
-#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:264
+#: templatetags/extra_filters_jinja.py:279
#, fuzzy
-msgid "no items in counter"
-msgstr "無"
+msgid "no"
+msgstr "第三名"
-#: utils/decorators.py:90 views/commands.py:113 views/commands.py:133
+#: utils/decorators.py:90 views/commands.py:73 views/commands.py:93
msgid "Oops, apologies - there was some error"
msgstr ""
@@ -6368,7 +6498,8 @@ msgid "this field is required"
msgstr " 標籤不能為空白。"
#: utils/forms.py:60
-msgid "choose a username"
+#, fuzzy
+msgid "Choose a screen name"
msgstr "選擇一個用戶名"
#: utils/forms.py:69
@@ -6401,8 +6532,8 @@ msgid "please use at least some alphabetic characters in the user name"
msgstr ""
#: utils/forms.py:138
-msgid "your email address"
-msgstr "您的電子郵件地址"
+msgid "Your email <i>(never shared)</i>"
+msgstr ""
#: utils/forms.py:139
msgid "email address is required"
@@ -6417,17 +6548,13 @@ msgstr "請輸入合法電子郵件地址"
msgid "this email is already used by someone else, please choose another"
msgstr "該電子郵件已被注冊,請選擇另一個再試。"
-#: utils/forms.py:169
-msgid "choose password"
-msgstr "密碼"
-
#: utils/forms.py:170
msgid "password is required"
msgstr " 密碼不能為空白。"
#: utils/forms.py:173
-msgid "retype password"
-msgstr "確認密碼"
+msgid "Password <i>(please retype)</i>"
+msgstr ""
#: utils/forms.py:174
#, fuzzy
@@ -6438,27 +6565,58 @@ msgstr "確認密碼"
msgid "sorry, entered passwords did not match, please try again"
msgstr "對不起, 密碼不合, 請重新輸入"
-#: utils/functions.py:74
+#: utils/functions.py:82
#, fuzzy
msgid "2 days ago"
msgstr "二天前"
-#: utils/functions.py:76
+#: utils/functions.py:84
msgid "yesterday"
msgstr "昨天"
-#: utils/functions.py:79
+#: utils/functions.py:87
#, python-format
msgid "%(hr)d hour ago"
msgid_plural "%(hr)d hours ago"
msgstr[0] ""
-#: utils/functions.py:85
+#: utils/functions.py:93
#, python-format
msgid "%(min)d min ago"
msgid_plural "%(min)d mins ago"
msgstr[0] ""
+#: utils/mail.py:147
+msgid ""
+"<p>To ask by email, please:</p>\n"
+"<ul>\n"
+" <li>Format the subject line as: [Tag1; Tag2] Question title</li>\n"
+" <li>Type details of your question into the email body</li>\n"
+"</ul>\n"
+"<p>Note that tags may consist of more than one word, and tags\n"
+"may be separated by a semicolon or a comma</p>\n"
+msgstr ""
+
+#: utils/mail.py:167
+#, python-format
+msgid ""
+"<p>Sorry, there was an error posting your question please contact the "
+"%(site)s administrator</p>"
+msgstr ""
+
+#: utils/mail.py:173
+#, python-format
+msgid ""
+"<p>Sorry, in order to post questions on %(site)s by email, please <a href="
+"\"%(url)s\">register first</a></p>"
+msgstr ""
+
+#: utils/mail.py:181
+msgid ""
+"<p>Sorry, your question could not be posted due to insufficient privileges "
+"of your user account</p>"
+msgstr ""
+
#: views/avatar_views.py:99
msgid "Successfully uploaded a new avatar."
msgstr ""
@@ -6471,214 +6629,609 @@ msgstr ""
msgid "Successfully deleted the requested avatars."
msgstr ""
-#: views/commands.py:39
-msgid "anonymous users cannot vote"
+#: views/commands.py:83
+#, fuzzy
+msgid "Sorry, but anonymous users cannot access the inbox"
+msgstr "匿名用戶不能投票"
+
+#: views/commands.py:112
+#, fuzzy
+msgid "Sorry, anonymous users cannot vote"
msgstr "匿名用戶不能投票"
-#: views/commands.py:59
+#: views/commands.py:129
msgid "Sorry you ran out of votes for today"
msgstr ""
-#: views/commands.py:65
+#: views/commands.py:135
#, python-format
msgid "You have %(votes_left)s votes left for today"
msgstr ""
-#: views/commands.py:123
-#, fuzzy
-msgid "Sorry, but anonymous users cannot access the inbox"
-msgstr "匿名用戶不能投票"
-
-#: views/commands.py:198
+#: views/commands.py:210
msgid "Sorry, something is not right here..."
msgstr ""
-#: views/commands.py:213
+#: views/commands.py:229
#, fuzzy
msgid "Sorry, but anonymous users cannot accept answers"
msgstr "匿名用戶不能投票"
-#: views/commands.py:320
-#, python-format
-msgid "subscription saved, %(email)s needs validation, see %(details_url)s"
+#: views/commands.py:339
+#, fuzzy, python-format
+msgid ""
+"Your subscription is saved, but email address %(email)s needs to be "
+"validated, please see <a href=\"%(details_url)s\">more details here</a>"
msgstr "訂閱暫存, 需用 %(email)s 認證, 參考 %(details_url)s"
-#: views/commands.py:327
+#: views/commands.py:348
msgid "email update frequency has been set to daily"
msgstr "電子郵件每日更新"
-#: views/commands.py:433
+#: views/commands.py:464
#, python-format
msgid "Tag subscription was canceled (<a href=\"%(url)s\">undo</a>)."
msgstr ""
-#: views/commands.py:442
+#: views/commands.py:473
#, python-format
msgid "Please sign in to subscribe for: %(tags)s"
msgstr ""
-#: views/commands.py:578
+#: views/commands.py:600
#, fuzzy
msgid "Please sign in to vote"
msgstr "請由此進入: "
-#: views/meta.py:84
+#: views/commands.py:620
+#, fuzzy
+msgid "Please sign in to delete/restore posts"
+msgstr "請由此進入: "
+
+#: views/meta.py:37
+#, fuzzy, python-format
+msgid "About %(site)s"
+msgstr "關於本站"
+
+#: views/meta.py:92
msgid "Q&A forum feedback"
msgstr "Q&A 論壇回饋"
-#: views/meta.py:85
+#: views/meta.py:93
msgid "Thanks for the feedback!"
msgstr "謝謝回饋"
-#: views/meta.py:94
+#: views/meta.py:102
msgid "We look forward to hearing your feedback! Please, give it next time :)"
msgstr "期待你的回饋"
-#: views/readers.py:152
+#: views/meta.py:106
+msgid "Privacy policy"
+msgstr "隱私政策"
+
+#: views/readers.py:133
#, fuzzy, python-format
msgid "%(q_num)s question, tagged"
msgid_plural "%(q_num)s questions, tagged"
msgstr[0] "第 %(q_num)s 個問題"
-#: views/readers.py:200
-#, python-format
-msgid "%(badge_count)d %(badge_level)s badge"
-msgid_plural "%(badge_count)d %(badge_level)s badges"
-msgstr[0] ""
-
-#: views/readers.py:416
+#: views/readers.py:388
#, fuzzy
msgid ""
"Sorry, the comment you are looking for has been deleted and is no longer "
"accessible"
msgstr "這個問題被"
-#: views/users.py:212
+#: views/users.py:206
#, fuzzy
msgid "moderate user"
msgstr "管理用戶"
-#: views/users.py:387
+#: views/users.py:381
msgid "user profile"
msgstr "用戶資料"
-#: views/users.py:388
+#: views/users.py:382
msgid "user profile overview"
msgstr "用戶概覽"
-#: views/users.py:699
+#: views/users.py:551
msgid "recent user activity"
msgstr "最近活動"
-#: views/users.py:700
+#: views/users.py:552
msgid "profile - recent activity"
msgstr "最近活動"
-#: views/users.py:787
+#: views/users.py:639
msgid "profile - responses"
msgstr "用戶資料 - 回應 "
-#: views/users.py:862
+#: views/users.py:680
msgid "profile - votes"
msgstr "用戶資料 - 投票"
-#: views/users.py:897
-msgid "user reputation in the community"
-msgstr "用戶社區積分"
+#: views/users.py:701
+#, fuzzy
+msgid "user karma"
+msgstr "用戶名"
-#: views/users.py:898
-msgid "profile - user reputation"
+#: views/users.py:702
+#, fuzzy
+msgid "Profile - User's Karma"
msgstr "用戶資料 - 積分"
-#: views/users.py:925
+#: views/users.py:720
msgid "users favorite questions"
msgstr "用戶收藏的問題"
-#: views/users.py:926
+#: views/users.py:721
msgid "profile - favorite questions"
msgstr "用戶資料 - 收藏"
-#: views/users.py:946 views/users.py:950
+#: views/users.py:741 views/users.py:745
msgid "changes saved"
msgstr "儲存修改"
-#: views/users.py:956
+#: views/users.py:751
msgid "email updates canceled"
msgstr "取消電子郵件更新"
-#: views/users.py:975
+#: views/users.py:770
#, fuzzy
msgid "profile - email subscriptions"
msgstr "用戶資料 - email 訂閱"
-#: views/writers.py:59
+#: views/writers.py:60
#, fuzzy
msgid "Sorry, anonymous users cannot upload files"
msgstr "匿名用戶不能投票"
# todo take these out of settings
-#: views/writers.py:69
+#: views/writers.py:73
#, python-format
msgid "allowed file types are '%(file_types)s'"
msgstr "只允許上傳 '%(file_types)s' 類型的文件!"
-#: views/writers.py:92
+#: views/writers.py:84
#, fuzzy, python-format
msgid "maximum upload file size is %(file_size)sK"
msgstr "只允許上傳 %s K大小的文件!"
-#: views/writers.py:100
+#: views/writers.py:92
#, fuzzy
msgid "Error uploading file. Please contact the site administrator. Thank you."
msgstr "在文件上傳過程中產生了錯誤,請聯系管理員,謝謝^_^"
-#: views/writers.py:192
-#, fuzzy
-msgid "Please log in to ask questions"
-msgstr "歡迎提問! "
+#: views/writers.py:189
+msgid ""
+"<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."
+msgstr ""
-#: views/writers.py:493
+#: views/writers.py:466
#, fuzzy
msgid "Please log in to answer questions"
msgstr "沒有回答的問題"
-#: views/writers.py:600
+#: views/writers.py:572
#, 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:649
+#: views/writers.py:589
#, fuzzy
msgid "Sorry, anonymous users cannot edit comments"
msgstr "匿名用戶不能投票"
-#: views/writers.py:658
+#: views/writers.py:619
#, 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:679
+#: views/writers.py:640
msgid "sorry, we seem to have some technical difficulties"
msgstr ""
-#~ msgid "question content must be > 10 characters"
-#~ msgstr "內容至少要10個字符"
+#, fuzzy
+#~ msgid "this email will be linked to gravatar"
+#~ msgstr "不會公開,用於頭像顯示服務"
#, fuzzy
-#~ msgid "Question: \"%(title)s\""
-#~ msgstr "提問"
+#~ msgid "Explain how to change LDAP password"
+#~ msgstr "帳號: 密碼已改變"
+
+#~ msgid "Incorrect username."
+#~ msgstr "選擇一個用戶名"
+
+#, fuzzy
+#~ 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 " 請參觀論壇, 觀看新功能介紹! 並廣為宣傳 - 能否解答或從中獲益?"
+
+#, fuzzy
+#~ 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 "你設定訂閱每日查詢, 如果每天收到信件超夠一封, 請告知管理者."
+
+#, fuzzy
+#~ 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 "你設定訂閱每周查詢, 如果每周收到信件超夠一封, 請告知管理者."
+
+#~ msgid ""
+#~ "There is a chance that you may be receiving links seen before - due to a "
+#~ "technicality that will eventually go away. "
+#~ msgstr "你有可能收到之前看過的連結, 此肇因於即將終止的技術."
+
+#, fuzzy
+#~ msgid ""
+#~ "go to %(email_settings_link)s to change frequency of email updates or "
+#~ "%(admin_email)s administrator"
+#~ msgstr "請至 %(link)s 更改收信頻率或管理者的 %(email)s "
+
+#~ msgid ""
+#~ "uploading images is limited to users with >%(min_rep)s reputation points"
+#~ msgstr "上傳圖片只限於積分 >%(min_rep)s 以上注冊用戶!"
+
+#~ msgid "blocked users cannot post"
+#~ msgstr "被隔離使用者不能張貼"
+
+#~ msgid "suspended users cannot post"
+#~ msgstr "被停用使用者不能張貼"
+
+#, fuzzy
+#~ msgid "blocked users cannot flag posts"
+#~ msgstr "被隔離使用者不能張貼"
+
+#, fuzzy
+#~ msgid "suspended users cannot flag posts"
+#~ msgstr "被停用使用者不能張貼"
+
+#, fuzzy
+#~ msgid "suspended users cannot remove flags"
+#~ msgstr "被停用使用者不能張貼"
+
+#~ msgid "cannot revoke old vote"
+#~ msgstr "這個投票已經過時,不能撤銷。"
+
+#~ msgid "%(author)s modified the question"
+#~ msgstr "%(author)s 已修改這個問題"
+
+#~ msgid "%(people)s posted %(new_answer_count)s new answers"
+#~ msgstr "%(people)s 張貼新答案 %(new_answer_count)s"
+
+#~ msgid "%(people)s commented the question"
+#~ msgstr "%(people)s 評論問題"
+
+#~ msgid "%(people)s commented answers"
+#~ msgstr "%(people)s 評論回答"
+
+#~ msgid "%(people)s commented an answer"
+#~ msgstr "%(people)s 評論回答"
+
+#~ msgid "change %(email)s info"
+#~ msgstr "更換 %(email)s 電子郵件"
+
+#~ msgid "here is why email is required, see %(gravatar_faq_url)s"
+#~ msgstr "email 必要, 請參考 %(gravatar_faq_url)s"
+
+#~ msgid "Your new Email"
+#~ msgstr "新電子信箱"
+
+#~ msgid "validate %(email)s info or go to %(change_email_url)s"
+#~ msgstr "驗證 %(email)s 資料或到 %(change_email_url)s"
+
+#~ msgid "old %(email)s kept, if you like go to %(change_email_url)s"
+#~ msgstr "如果你要到 %(change_email_url)s 舊 %(email)s 仍保留"
+
+#~ msgid "your current %(email)s can be used for this"
+#~ msgstr "可以用電子信箱 %(email)s "
+
+#~ msgid "thanks for verifying email"
+#~ msgstr "感謝驗證電子信箱"
+
+#~ msgid "email key not sent"
+#~ msgstr "電子信箱 key 未傳送"
+
+#~ msgid "email key not sent %(email)s change email here %(change_link)s"
+#~ msgstr "%(change_link)s 未傳送電子信箱 key %(email)s"
+
+#~ msgid "register new %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr "註冊 %(provider)s 帳號, 參考 %(gravatar_faq_url)s"
+
+#~ msgid ""
+#~ "%(username)s already exists, choose another name for \n"
+#~ " %(provider)s. Email is required too, see "
+#~ "%(gravatar_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "%(username)s 已註冊, 請選用 %(provider)s 其他帳號 \n"
+#~ " 同時也需要電子信箱, 請參考 %(gravatar_faq_url)s\n"
+#~ " "
+
+#~ msgid ""
+#~ "register new external %(provider)s account info, see %(gravatar_faq_url)s"
+#~ msgstr "註冊外在 %(provider)s 帳號, 請參考 %(gravatar_faq_url)s"
+
+#~ msgid "register new Facebook connect account info, see %(gravatar_faq_url)s"
+#~ msgstr "註冊臉書新帳號, 請參考 %(gravatar_faq_url)s"
+
+# todo: review this message may be confusing user
+#~ msgid "This account already exists, please use another."
+#~ msgstr "指定帳號已經存在, 請使用別的帳號。"
+
+#~ msgid "Screen name label"
+#~ msgstr "畫面標題"
+
+#, fuzzy
+#~ msgid "Email address label"
+#~ msgstr "您的電子郵件地址"
+
+#~ msgid "receive updates motivational blurb"
+#~ msgstr "接收到更新的簡介"
+
+#~ msgid "Tag filter tool will be your right panel, once you log in."
+#~ msgstr "一旦簽入, 標籤供聚會在右欄"
+
+#~ msgid "create account"
+#~ msgstr "新增帳號"
#, fuzzy
#~ msgid ""
-#~ "If you believe that this message was sent in mistake - \n"
-#~ "no further action is needed. Just ignore this email, we apologize\n"
-#~ "for any inconvenience."
+#~ "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 "如你肯定這訊息被誤送, 不需做任何動作, 並忽略此信, 非常抱歉 \n"
+#~ msgid "Login"
+#~ msgstr "登錄"
+
+#~ msgid "Why use OpenID?"
+#~ msgstr "為什麼使用 OpenID 登錄?"
+
+#~ msgid "with openid it is easier"
+#~ msgstr "使用 OpenID 更為容易"
+
+#~ msgid "reuse openid"
+#~ msgstr "用同一個 opedid 帳號"
+
+#~ msgid "openid is widely adopted"
+#~ msgstr "OpenID 廣為被人利用"
+
+#~ msgid "openid is supported open standard"
+#~ msgstr "OpenID 為開放標準"
+
+#~ msgid "Find out more"
+#~ msgstr "查看更多"
+
+#~ msgid "Get OpenID"
+#~ msgstr "獲取 OpenID"
+
+#~ msgid "Traditional signup info"
+#~ msgstr "傳統登入事項"
+
+#, fuzzy
+#~ msgid "Create Account"
+#~ msgstr "新增帳號"
+
+#~ msgid "answer permanent link"
+#~ msgstr "回答的連結地址"
+
+#, fuzzy
+#~ msgid "remove all flags"
+#~ msgstr "查看標籤列表"
+
+#, fuzzy
+#~ msgid "%(question_author)s has selected this answer as correct"
+#~ msgstr "這個答案已經被提問作者標記為最佳答案"
+
+#~ msgid "Related tags"
+#~ msgstr "相關標籤"
+
+#~ msgid "Ask a question"
+#~ msgstr "我要提問"
+
+#~ msgid "Badges summary"
+#~ msgstr "獎勵列表"
+
+#~ msgid "gold badge description"
+#~ msgstr "第一名獎勵細節"
+
+#~ msgid "silver badge description"
+#~ msgstr "第二名獎勵細節"
+
+#~ msgid "bronze badge description"
+#~ msgstr "第三名獎勵細節"
+
+#~ msgid ""
+#~ "is a Q&A site, not a discussion group. Therefore - please avoid having "
+#~ "discussions in your answers, comment facility allows some space for brief "
+#~ "discussions."
+#~ msgstr " 此為 問題/回答 網站,非討論區,請勿在此討論或評論答案。"
+
+#~ msgid "Rep system summary"
+#~ msgstr "更新概要:"
+
+#, fuzzy
+#~ msgid "use tags"
+#~ msgstr "使用標籤"
+
+#~ msgid "what is gravatar"
+#~ msgstr "何謂大頭貼服務"
+
+#~ msgid "gravatar faq info"
+#~ msgstr "大頭貼服務常問集"
+
+#, fuzzy
+#~ msgid "i like this question (click again to cancel)"
+#~ msgstr "這篇帖子有價值(再次點擊取消操作)"
+
+#~ msgid "i like this answer (click again to cancel)"
+#~ msgstr "這篇帖子有價值(再次點擊取消操作)"
+
+#, fuzzy
+#~ msgid "i dont like this question (click again to cancel)"
+#~ msgstr "這篇帖子沒有價值(再次點擊取消操作)"
+
+#~ msgid "i dont like this answer (click again to cancel)"
+#~ msgstr "這篇帖子沒有價值(再次點擊取消操作)"
+
+#, fuzzy
+#~ msgid "see <strong>%(counter)s</strong> more comment"
+#~ msgid_plural ""
+#~ "see <strong>%(counter)s</strong> more comments\n"
+#~ " "
+#~ msgstr[0] "更多評論, 詳見 <strong>%(counter)s</strong>"
+
+#~ msgid "posts per page"
+#~ msgstr "每頁顯示:"
+
+#~ msgid "Change tags"
+#~ msgstr "修改標籤"
+
+#~ msgid "reputation"
+#~ msgstr "積分"
+
+#~ msgid "oldest answers"
+#~ msgstr "最先回答"
+
+#~ msgid "newest answers"
+#~ msgstr "最近回答"
+
+#~ msgid "popular answers"
+#~ msgstr "投票最多"
+
+#~ msgid "you can answer anonymously and then login"
+#~ msgstr "你可以匿名回應再簽入"
+
+#~ msgid "answer your own question only to give an answer"
+#~ msgstr "自問自答"
+
+#~ msgid "please only give an answer, no discussions"
+#~ msgstr "請答複問題,而非討論。"
+
+#, fuzzy
+#~ msgid "Login/Signup to Post Your Answer"
+#~ msgstr "登錄並回答該問題"
+
+#~ msgid "Answer the question"
+#~ msgstr "回答問題"
+
+#, fuzzy
+#~ msgid "question asked"
+#~ msgstr "提問時間"
+
+#~ msgid "question was seen"
+#~ msgstr "目前問題"
+
+#, fuzzy
+#~ msgid "Notify me once a day when there are any new answers"
+#~ msgstr "若有新答案請知會我"
+
+#, fuzzy
+#~ msgid "Notify me immediately when there are any new answers"
+#~ msgstr "若有新答案請知會我"
+
+#~ msgid ""
+#~ "You can always adjust frequency of email updates from your %(profile_url)s"
+#~ msgstr "你可從 %(profile_url)s 調整 email 更新頻率"
+
+#~ msgid "email subscription settings info"
+#~ msgstr "Email 訂閱設定資料"
+
+#~ msgid "Stop sending email"
+#~ msgstr "停止送出 email"
+
+#~ msgid "user website"
+#~ msgstr "個人網站"
+
+#~ msgid "<span class=\"count\">%(counter)s</span> Answer"
+#~ msgid_plural "<span class=\"count\">%(counter)s</span> Answers"
+#~ msgstr[0] "<span class=\"count\">%(counter)s</span> 答案"
+
+#~ msgid "reputation history"
+#~ msgstr "積分歷史"
+
+#~ msgid "recent activity"
+#~ msgstr "最近活動"
+
+#~ msgid "casted votes"
+#~ msgstr "決定性投票"
+
+#~ msgid "answer tips"
+#~ msgstr "提問技巧"
+
+#~ msgid "please try to provide details"
+#~ msgstr "請詳細描述細節"
+
+#~ msgid "ask a question"
+#~ msgstr "我要提問"
+
+#, fuzzy
+#~ msgid ""
+#~ "must have valid %(email)s to post, \n"
+#~ " see %(email_validation_faq_url)s\n"
+#~ " "
+#~ msgstr ""
+#~ "%(username)s 已註冊, 請選用 %(provider)s 其他帳號 \n"
+#~ " 同時也需要電子信箱, 請參考 %(gravatar_faq_url)s\n"
+
+#~ msgid "Login/signup to post your question"
+#~ msgstr "請 Login/signup 進去張貼"
+
+#~ msgid "question tips"
+#~ msgstr "提問技巧"
+
+#~ msgid "please ask a relevant question"
+#~ msgstr "我要提問"
+
+#~ msgid "logout"
+#~ msgstr "登出"
+
+#~ msgid "login"
+#~ msgstr "登錄"
+
+#, fuzzy
+#~ msgid "no items in counter"
+#~ msgstr "無"
+
+#~ msgid "your email address"
+#~ msgstr "您的電子郵件地址"
+
+#~ msgid "choose password"
+#~ msgstr "密碼"
+
+#~ msgid "retype password"
+#~ msgstr "確認密碼"
+
+#~ msgid "user reputation in the community"
+#~ msgstr "用戶社區積分"
+
+#, fuzzy
+#~ msgid "Please log in to ask questions"
+#~ msgstr "歡迎提問! "
+
+#~ msgid "question content must be > 10 characters"
+#~ msgstr "內容至少要10個字符"
+
+#, fuzzy
+#~ msgid "Question: \"%(title)s\""
+#~ msgstr "提問"
+
#, fuzzy
#~ msgid "(please enter a valid email)"
#~ msgstr "請輸入合法電子郵件地址"
@@ -6714,9 +7267,6 @@ msgstr ""
#~ msgid "Question tags"
#~ msgstr "問題標籤"
-#~ msgid "questions"
-#~ msgstr "問題"
-
#~ msgid "search"
#~ msgstr "搜索"
@@ -6727,9 +7277,6 @@ msgstr ""
#~ msgid "In:"
#~ msgstr "In:"
-#~ msgid "Sort by:"
-#~ msgstr "查詢性質: "
-
#, fuzzy
#~ msgid "Email (not shared with anyone):"
#~ msgstr "電子郵件(<i>用於頭像顯示服務</i>)"
@@ -7346,9 +7893,6 @@ msgstr ""
#~ msgid "Existing account"
#~ msgstr "已經存在的用戶"
-#~ msgid "user name"
-#~ msgstr "用戶名"
-
#~ msgid "password"
#~ msgstr "密碼"
@@ -7572,11 +8116,6 @@ msgstr ""
#~ "please use space to separate tags (this enables autocomplete feature)"
#~ msgstr "多個標籤請用空格間隔(優先使用自動匹配的英文標籤。)"
-#~ msgid ""
-#~ "please use following characters in tags: letters 'a-z', numbers, and "
-#~ "characters '.-_#'"
-#~ msgstr "標籤請使用英文字母,中文或者數字字符串(. - _ # 也可以)"
-
#~ msgid "profile - user preferences"
#~ msgstr "用戶資料 - 設置"
@@ -7598,14 +8137,6 @@ msgstr ""
#~ msgstr "電子郵件:(不會公開顯示)"
#~ msgid ""
-#~ "gold badge descriptionGold badge is very rare. To obtain it you have to "
-#~ "show profound knowledge and ability in addition to actively participating "
-#~ "in the community. Gold badge is the highest award in this community."
-#~ msgstr ""
-#~ "金牌是十分罕見的。你不僅要參與社區的提問、回答、投票等活動,而且需要有博深"
-#~ "的知識和能力才能獲得。"
-
-#~ msgid ""
#~ "silver badge descriptionObtaining silver badge requires significant "
#~ "patience. If you got one, you've very significantly contributed to this "
#~ "community"
@@ -7626,10 +8157,6 @@ msgstr ""
#~ msgstr "銅牌會在你活躍於社區時產生,它相對容易獲得,但也是一種特殊的榮譽。"
#, fuzzy
-#~ msgid "About us"
-#~ msgstr "關於本站"
-
-#, fuzzy
#~ msgid "Contact"
#~ msgstr "聯系我們"
@@ -7700,9 +8227,6 @@ msgstr ""
#~ msgid "votes total"
#~ msgstr "投票總數"
-#~ msgid "Tags"
-#~ msgstr "標籤"
-
#~ msgid "New password again"
#~ msgstr "新密碼"
diff --git a/askbot/locale/zh_TW/LC_MESSAGES/djangojs.po b/askbot/locale/zh_TW/LC_MESSAGES/djangojs.po
index 23d9649d..57ffb4ac 100644
--- a/askbot/locale/zh_TW/LC_MESSAGES/djangojs.po
+++ b/askbot/locale/zh_TW/LC_MESSAGES/djangojs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-27 01:58-0600\n"
+"POT-Creation-Date: 2012-04-18 18:52-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Translate Toolkit 1.9.0\n"
#: skins/common/media/jquery-openid/jquery.openid.js:73
-#, c-format
+#, perl-format
msgid "Are you sure you want to remove your %s login?"
msgstr ""
@@ -36,38 +36,38 @@ msgstr ""
msgid "passwords do not match"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:162
+#: skins/common/media/jquery-openid/jquery.openid.js:161
msgid "Show/change current login methods"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:223
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:226
+#, perl-format
msgid "Please enter your %s, then proceed"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:225
+#: skins/common/media/jquery-openid/jquery.openid.js:228
msgid "Connect your %(provider_name)s account to %(site)s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:319
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:322
+#, perl-format
msgid "Change your %s password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:320
+#: skins/common/media/jquery-openid/jquery.openid.js:323
msgid "Change password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:323
-#, c-format
+#: skins/common/media/jquery-openid/jquery.openid.js:326
+#, perl-format
msgid "Create a password for %s"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:324
+#: skins/common/media/jquery-openid/jquery.openid.js:327
msgid "Create password"
msgstr ""
-#: skins/common/media/jquery-openid/jquery.openid.js:340
+#: skins/common/media/jquery-openid/jquery.openid.js:343
msgid "Create a password-protected account"
msgstr ""
@@ -75,148 +75,77 @@ msgstr ""
msgid "loading..."
msgstr "讀取中..."
-#: skins/common/media/js/post.js:128 skins/common/media/js/post.js.c:859
-msgid "tags cannot be empty"
-msgstr "標籤不能為空白"
-
-#: skins/common/media/js/post.js:134
-msgid "content cannot be empty"
-msgstr "內容不能為空白"
-
-#: skins/common/media/js/post.js:135
-#, c-format
-msgid "%s content minchars"
-msgstr "請輸入至少 %s 字符。"
-
-#: skins/common/media/js/post.js:138
-msgid "please enter title"
-msgstr "請輸入標題。"
-
-#: skins/common/media/js/post.js:139 skins/common/media/js/post.js.c:987
-#, c-format
-msgid "%s title minchars"
-msgstr "請輸入至少 %s 字符。"
-
-#: skins/common/media/js/post.js:282
+#: skins/common/media/js/post.js:318
msgid "insufficient privilege"
msgstr "權限不足"
-#: skins/common/media/js/post.js:283
+#: skins/common/media/js/post.js:319
msgid "cannot pick own answer as best"
msgstr "不能蔽掃自珍"
-#: skins/common/media/js/post.js:288
+#: skins/common/media/js/post.js:324
msgid "please login"
msgstr "請先登錄"
-#: skins/common/media/js/post.js:290
+#: skins/common/media/js/post.js:326
msgid "anonymous users cannot follow questions"
msgstr ""
-#: skins/common/media/js/post.js:291
+#: skins/common/media/js/post.js:327
msgid "anonymous users cannot subscribe to questions"
msgstr ""
-#: skins/common/media/js/post.js:292
+#: skins/common/media/js/post.js:328
msgid "anonymous users cannot vote"
msgstr ""
-#: skins/common/media/js/post.js:294
+#: skins/common/media/js/post.js:330
msgid "please confirm offensive"
msgstr "確定要歸類該帖為廣告、人身攻擊、惡意言論嗎?"
-#: skins/common/media/js/post.js:295
+#: skins/common/media/js/post.js:331
+#, fuzzy
+msgid "please confirm removal of offensive flag"
+msgstr "確定要歸類該帖為廣告、人身攻擊、惡意言論嗎?"
+
+#: skins/common/media/js/post.js:332
msgid "anonymous users cannot flag offensive posts"
msgstr "匿名用戶不能操作"
-#: skins/common/media/js/post.js:296
+#: skins/common/media/js/post.js:333
msgid "confirm delete"
msgstr "確定刪除"
-#: skins/common/media/js/post.js:297
+#: skins/common/media/js/post.js:334
msgid "anonymous users cannot delete/undelete"
msgstr "匿名用戶不能刪除或恢復帖子"
-#: skins/common/media/js/post.js:298
+#: skins/common/media/js/post.js:335
msgid "post recovered"
msgstr "操作成功!該帖子已被恢複。"
-#: skins/common/media/js/post.js:299
+#: skins/common/media/js/post.js:336
msgid "post deleted"
msgstr "操作成功!該帖子已刪除。"
-#: skins/common/media/js/post.js:539 skins/old/media/js/post.js:535
-msgid "Follow"
-msgstr ""
-
-#: skins/common/media/js/post.js:548 skins/common/media/js/post.js.c:557
-#: skins/old/media/js/post.js:544 skins/old/media/js/post.js.c:553
-#, fuzzy, c-format
-msgid "%s follower"
-msgid_plural "%s followers"
-msgstr[0] ""
-"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
-"#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
-msgstr[1] "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
-
-#: skins/common/media/js/post.js:553 skins/old/media/js/post.js:549
-msgid "<div>Following</div><div class=\"unfollow\">Unfollow</div>"
-msgstr ""
-
-#: skins/common/media/js/post.js:615
-msgid "undelete"
-msgstr "取消"
-
-#: skins/common/media/js/post.js:620
-msgid "delete"
-msgstr "刪除"
-
-#: skins/common/media/js/post.js:957
+#: skins/common/media/js/post.js:1206
msgid "add comment"
msgstr "添加評論"
-#: skins/common/media/js/post.js:960
+#: skins/common/media/js/post.js:1209
msgid "save comment"
msgstr ""
-#: skins/common/media/js/post.js:990
-#, c-format
-msgid "enter %s more characters"
-msgstr "還可寫%s字"
-
-#: skins/common/media/js/post.js:995
-#, c-format
-msgid "%s characters left"
-msgstr "還可寫%s字"
-
-#: skins/common/media/js/post.js:1066
-msgid "cancel"
-msgstr ""
-
-#: skins/common/media/js/post.js:1109
-msgid "confirm abandon comment"
-msgstr ""
-
-#: skins/common/media/js/post.js:1183
-msgid "delete this comment"
-msgstr "刪除此評論"
-
-#: skins/common/media/js/post.js:1387
-msgid "confirm delete comment"
-msgstr "刪除評論確認"
-
-#: skins/common/media/js/post.js:1628 skins/old/media/js/post.js:1621
+#: skins/common/media/js/post.js:1874
msgid "Please enter question title (>10 characters)"
msgstr ""
#: skins/common/media/js/tag_selector.js:15
-#: skins/old/media/js/tag_selector.js:15
msgid "Tag \"<span></span>\" matches:"
msgstr ""
#: skins/common/media/js/tag_selector.js:84
-#: skins/old/media/js/tag_selector.js:84
-#, c-format
+#, perl-format
msgid "and %s more, not shown..."
msgstr ""
@@ -229,118 +158,148 @@ msgid "Delete this notification?"
msgid_plural "Delete these notifications?"
msgstr[0] ""
-#: skins/common/media/js/user.js:125 skins/old/media/js/user.js:129
+#: skins/common/media/js/user.js:65
+#, fuzzy
+msgid "Close this entry?"
+msgid_plural "Close these entries?"
+msgstr[0] "刪除此評論"
+
+#: skins/common/media/js/user.js:72
+msgid "Remove all flags on this entry?"
+msgid_plural "Remove all flags on these entries?"
+msgstr[0] ""
+
+#: skins/common/media/js/user.js:79
+#, fuzzy
+msgid "Delete this entry?"
+msgid_plural "Delete these entries?"
+msgstr[0] "刪除此評論"
+
+#: skins/common/media/js/user.js:159
msgid "Please <a href=\"%(signin_url)s\">signin</a> to follow %(username)s"
msgstr ""
-#: skins/common/media/js/user.js:157 skins/old/media/js/user.js:161
-#, c-format
+#: skins/common/media/js/user.js:191
+#, perl-format
msgid "unfollow %s"
msgstr ""
-#: skins/common/media/js/user.js:160 skins/old/media/js/user.js:164
-#, c-format
+#: skins/common/media/js/user.js:194
+#, perl-format
msgid "following %s"
msgstr ""
-#: skins/common/media/js/user.js:166 skins/old/media/js/user.js:170
-#, c-format
+#: skins/common/media/js/user.js:200
+#, perl-format
msgid "follow %s"
msgstr ""
-#: skins/common/media/js/utils.js:43
+#: skins/common/media/js/utils.js:44
msgid "click to close"
msgstr "點擊消息框關閉"
-#: skins/common/media/js/utils.js:214
-msgid "click to edit this comment"
-msgstr ""
-
-#: skins/common/media/js/utils.js:215
-msgid "edit"
-msgstr ""
-
-#: skins/common/media/js/utils.js:369
-#, c-format
-msgid "see questions tagged '%s'"
-msgstr ""
-
-#: skins/common/media/js/wmd/wmd.js:30
+#: skins/common/media/js/wmd/wmd.js:26
msgid "bold"
msgstr "粗體"
-#: skins/common/media/js/wmd/wmd.js:31
+#: skins/common/media/js/wmd/wmd.js:27
msgid "italic"
msgstr "斜體"
-#: skins/common/media/js/wmd/wmd.js:32
+#: skins/common/media/js/wmd/wmd.js:28
msgid "link"
msgstr "超連接"
-#: skins/common/media/js/wmd/wmd.js:33
+#: skins/common/media/js/wmd/wmd.js:29
msgid "quote"
msgstr "引用"
-#: skins/common/media/js/wmd/wmd.js:34
+#: skins/common/media/js/wmd/wmd.js:30
msgid "preformatted text"
msgstr "代碼"
-#: skins/common/media/js/wmd/wmd.js:35
+#: skins/common/media/js/wmd/wmd.js:31
msgid "image"
msgstr "圖片"
-#: skins/common/media/js/wmd/wmd.js:36
+#: skins/common/media/js/wmd/wmd.js:32
msgid "attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:37
+#: skins/common/media/js/wmd/wmd.js:33
msgid "numbered list"
msgstr "數字編號列表"
-#: skins/common/media/js/wmd/wmd.js:38
+#: skins/common/media/js/wmd/wmd.js:34
msgid "bulleted list"
msgstr "項目符號列表"
-#: skins/common/media/js/wmd/wmd.js:39
+#: skins/common/media/js/wmd/wmd.js:35
msgid "heading"
msgstr "標題"
-#: skins/common/media/js/wmd/wmd.js:40
+#: skins/common/media/js/wmd/wmd.js:36
msgid "horizontal bar"
msgstr "水平線"
-#: skins/common/media/js/wmd/wmd.js:41
+#: skins/common/media/js/wmd/wmd.js:37
msgid "undo"
msgstr "撤銷"
-#: skins/common/media/js/wmd/wmd.js:42 skins/common/media/js/wmd/wmd.js:1116
+#: skins/common/media/js/wmd/wmd.js:38 skins/common/media/js/wmd/wmd.js:1053
msgid "redo"
msgstr "重做"
-#: skins/common/media/js/wmd/wmd.js:53
+#: skins/common/media/js/wmd/wmd.js:47
msgid "enter image url"
msgstr ""
"<b>輸入圖片地址</b></p><p>示例:<br />http://www.example.com/image.jpg \"我"
"的截圖\""
-#: skins/common/media/js/wmd/wmd.js:54
+#: skins/common/media/js/wmd/wmd.js:48
msgid "enter url"
msgstr ""
"<b>輸入Web地址</b></p><p>示例:<br />http://www.cnprog.com/ \"我的網站\"</"
"p>"
-#: skins/common/media/js/wmd/wmd.js:55
+#: skins/common/media/js/wmd/wmd.js:49
msgid "upload file attachment"
msgstr ""
-#: skins/common/media/js/wmd/wmd.js:1778
-msgid "image description"
-msgstr ""
+#~ msgid "tags cannot be empty"
+#~ msgstr "標籤不能為空白"
-#: skins/common/media/js/wmd/wmd.js:1781
-msgid "file name"
-msgstr ""
+#~ msgid "content cannot be empty"
+#~ msgstr "內容不能為空白"
-#: skins/common/media/js/wmd/wmd.js:1785
-msgid "link text"
-msgstr ""
+#~ msgid "%s content minchars"
+#~ msgstr "請輸入至少 %s 字符。"
+
+#~ msgid "please enter title"
+#~ msgstr "請輸入標題。"
+
+#~ msgid "%s title minchars"
+#~ msgstr "請輸入至少 %s 字符。"
+
+#, fuzzy
+#~ msgid "%s follower"
+#~ msgid_plural "%s followers"
+#~ msgstr[0] ""
+#~ "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+#~ "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+#~ msgstr[1] "#-#-#-#-# djangojs.po (0.7) #-#-#-#-#\n"
+
+#~ msgid "undelete"
+#~ msgstr "取消"
+
+#~ msgid "delete"
+#~ msgstr "刪除"
+
+#~ msgid "enter %s more characters"
+#~ msgstr "還可寫%s字"
+
+#~ msgid "%s characters left"
+#~ msgstr "還可寫%s字"
+
+#~ msgid "confirm delete comment"
+#~ msgstr "刪除評論確認"